-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "d3-jnd",
"version": "0.1.3",
"description": "Just-noticeable differences for colors in CEILAB color space",
"keywords": [
"d3",
"d3-module",
"color",
"jnd",
"legibility",
"discriminability",
"just noticeable difference",
"CIELAB",
"Lab"
],
"homepage": "https://github.com/connorgr/d3-jnd",
"license": "BSD-3-Clause",
"author": "Connor Gramazio (http://gramaz.io)",
"main": "build/d3-jnd.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "git+https://github.com/connorgr/d3-jnd.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -f umd -g d3-color:d3 -n d3 -o build/d3-jnd.js -- index.js",
"test": "tape 'test/**/*-test.js' && eslint index.js src test",
"prepublish": "npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-jnd.js -c -m -o build/d3-jnd.min.js",
"postpublish": "git push && git push --tags && zip -j build/d3-jnd.zip -- LICENSE README.md build/d3-jnd.js build/d3-jnd.min.js"
},
"dependencies": {
"d3-color": "1"
},
"devDependencies": {
"eslint": "3",
"package-preamble": "0.0",
"rollup": "0.34",
"tape": "4",
"uglify-js": "2"
},
"bugs": {
"url": "https://github.com/connorgr/d3-jnd/issues"
},
"directories": {
"test": "test"
}
}