-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 779 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 779 Bytes
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
{
"name": "color-difference",
"version": "0.3.4",
"description": "Color difference calculator",
"scripts": {
"test": "make test"
},
"main": "./lib",
"bin": {
"color-difference": "./bin/color-difference"
},
"repository": {
"type": "git",
"url": "git://github.com/garex/nodejs-color-difference.git"
},
"keywords": [
"color",
"difference",
"RGB",
"Lab",
"CIE76"
],
"author": "Alexander Ustimenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/garex/nodejs-color-difference/issues"
},
"homepage": "https://github.com/garex/nodejs-color-difference",
"dependencies": {
"color-model": "^0.2.0",
"cli": "^0.4.5"
},
"devDependencies": {
"should": "^3.1.3",
"mocha": "^1.17.1"
}
}