-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "color-delta",
"version": "0.3.3",
"description": "calculate the diff between 2 colors",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"color-delta": "cli.js"
},
"keyword": [
"color",
"calculate color",
"calculate color diff",
"color diff",
"color difference",
"lighten",
"darken",
"desaturate",
"saturate",
"adjust-hue"
],
"files": [
"index.js",
"cli.js"
],
"repository": {
"type": "git",
"url": "https://github.com/matiassingers/color-delta"
},
"author": "Matias Singers <[email protected]> (http://mts.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matiassingers/color-delta/issues"
},
"homepage": "https://github.com/matiassingers/color-delta",
"dependencies": {
"lodash.mapvalues": "3.0.1",
"tinycolor2": "1.1.2"
},
"devDependencies": {
"coveralls": "2.11.2",
"istanbul": "0.3.14",
"mocha": "2.2.5",
"mocha-lcov-reporter": "0.0.2"
}
}