UNPKG

1.63 kBJSONView Raw
1{
2 "name": "cie.js",
3 "version": "1.0.23",
4 "main": "dist/main.js",
5 "types": "dist/main.d.ts",
6 "description": "Node wrapper around CIE.sh.",
7 "repository": "https://github.com/redpeacock78/cie.js",
8 "author": "redpeacock78",
9 "license": "MIT",
10 "bugs": {
11 "url": "https://github.com/redpeacock78/cie.js/issues"
12 },
13 "keywords": [
14 "cli",
15 "cie",
16 "lab",
17 "color",
18 "delta e",
19 "cie76",
20 "cie94",
21 "ciede2000",
22 "color difference"
23 ],
24 "bin": {
25 "cie-js": "./bin/cli.js"
26 },
27 "devDependencies": {
28 "@types/jest": "^26.0.21",
29 "@types/node": "^15.0.0",
30 "@typescript-eslint/eslint-plugin": "^4.19.0",
31 "@typescript-eslint/parser": "^4.19.0",
32 "eslint": "^7.22.0",
33 "eslint-config-prettier": "^8.1.0",
34 "eslint-plugin-prettier": "^3.3.1",
35 "jest": "^26.6.3",
36 "prettier": "^2.2.1",
37 "ts-jest": "^26.5.4",
38 "ts-loader": "^9.0.0",
39 "ts-node": "^9.1.1",
40 "typedoc": "^0.20.34",
41 "typedoc-plugin-cname": "^1.0.1",
42 "typescript": "^4.2.3"
43 },
44 "dependencies": {
45 "commander": "^7.2.0",
46 "spawn-promise": "^0.1.8"
47 },
48 "scripts": {
49 "lint": "eslint src/**/*.ts",
50 "lint-fix": "eslint --fix src/**/*.ts",
51 "test": "jest",
52 "test:coverage": "jest --coverage",
53 "build": "yarn lint-fix && tsc -p tsconfig.json",
54 "release": "yarn add -D can-npm-publish && yarn install --frozen-lockfile && ./release.sh && yarn remove can-npm-publish",
55 "docs": "typedoc --includeVersion --out docs/ @types/main.d.ts --tsconfig tsconfig.json --plugin typedoc-plugin-cname --cname cie-js.tk",
56 "prepublishOnly": "yarn build"
57 }
58}