-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.15 KB
/
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
{
"name": "color-cam16",
"version": "0.0.12",
"description": "Perceptual Color Space and Language based on the CAM16 Uniform Color Space",
"main": "dist/index.js",
"repository": "[email protected]:ogecko/color-cam16.git",
"author": "David Morrison <[email protected]>",
"license": "MIT",
"scripts": {
"build": "cd src; jison language.json; cp language.js ../dist; cd ..; tsc --build tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"publish": "echo use Google Authenticator and command: npm login --otp=??????; npm publish",
"generate": "npx ts-node src/generate.ts"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.27",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27",
"jison": "^0.4.18",
"prettier": "^2.6.2",
"source-map-support": "^0.5.21",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"dependencies": {
"color-name-list": "github:meodai/color-names",
"lodash": "^4.17.21"
}
}