-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cie.js",
"version": "1.0.33",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"description": "Node wrapper around CIE.sh.",
"repository": "https://github.com/redpeacock78/cie.js",
"author": "redpeacock78",
"license": "MIT",
"bugs": {
"url": "https://github.com/redpeacock78/cie.js/issues"
},
"keywords": [
"cli",
"cie",
"lab",
"color",
"delta e",
"cie76",
"cie94",
"ciede2000",
"color difference"
],
"bin": {
"cie-js": "./bin/cli.js"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.0",
"ts-loader": "^9.0.0",
"ts-node": "^10.0.0",
"typedoc": "^0.22.2",
"typedoc-plugin-cname": "^1.0.1",
"typescript": "^4.2.3"
},
"dependencies": {
"commander": "^8.0.0",
"spawn-promise": "^0.1.8"
},
"scripts": {
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "yarn lint-fix && tsc -p tsconfig.json",
"release": "yarn add -D can-npm-publish && yarn install --frozen-lockfile && ./release.sh && yarn remove can-npm-publish",
"docs": "typedoc --includeVersion --out docs/ @types/main.d.ts --tsconfig tsconfig.json --plugin typedoc-plugin-cname --cname cie-js.tk",
"prepublishOnly": "yarn build"
}
}