forked from gksander/CIE-ColorConverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1007 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "cie-colorconverter",
"version": "3.1.0",
"description": "Convert between CIE color spaces",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap --minify",
"test": "jest --verbose",
"test:watch": "jest --config=jest.config.js --watch",
"prepare": "yarn build"
},
"keywords": [
"CIE",
"Color",
"Color space"
],
"author": "Grant Sander",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/gksander/CIE-ColorConverter.git"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"jest": "^24.7.1",
"prettier": "^2.4.1",
"ts-jest": "^24.0.2",
"tsup": "^5.11.13",
"typescript": "^4.4.3"
}
}