-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.51 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
59
60
61
62
63
64
65
{
"name": "munsell",
"version": "1.1.5",
"author": "Hugo Sansaqua",
"license": "MPL-2.0",
"homepage": "https://github.com/privet-kitty/munsell.js",
"bugs": "https://github.com/privet-kitty/munsell.js/issues",
"description": "Library for Munsell Color System",
"keywords": [
"color",
"Munsell",
"colorimetry"
],
"private": false,
"main": "dist/src/index.js",
"files": [
"dist/src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test-coverage": "jest --coverage",
"lint": "eslint src test",
"doc": "typedoc",
"build-mrd": "sbcl --load ./src/fetch-mrd.lisp --quit MRD.ts 5",
"build-y-to-value": "ts-node src/gen-y-to-value-table",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/privet-kitty/munsell.js.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"d.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/gen-*.ts",
"!**/index.ts"
]
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"prettier": "^2.3.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.24.7",
"typescript": "^4.3.5"
}
}