-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "zcam-js",
"version": "0.0.9",
"license": "MPL-2.0",
"author": "Tim Janik",
"bugs": "https://github.com/tim-janik/zcam-js/issues",
"homepage": "https://github.com/tim-janik/zcam-js",
"keywords": [
"ZCAM",
"colour"
],
"description": "ZCAM color appearance model in JS with related tools and utilities",
"repository": "github:tim-janik/zcam-js.git",
"type": "module",
"exports": {
".": {
"import": "./zcam-js.mjs",
"require": "./zcam-js.cjs"
}
},
"scripts": {
"eslint": "eslint -f unix src/*.js",
"rollup": "rollup -c && sed -r '$s/ +\\b/\\n /g' -i zcam-js.mjs",
"test": "concurrently 'node src/math.js' 'node src/hashtable.js' 'node src/srgb.js' 'node src/jzazbz.js' 'node src/adaptation.js' 'node src/zcam.js' 'node src/gamut.js' "
},
"files": [
"LICENSE",
"zcam-js.mjs",
"zcam-js.cjs",
"NEWS.md",
"README.md"
],
"devDependencies": {
"@rollup/plugin-replace": "^5.0.1",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"rollup": "^3.2.3"
}
}