-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 981 Bytes
/
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
{
"name": "hue-color",
"description": "Get the x and y coordinates of a color in CIE color space from rgb.",
"version": "0.1.0",
"homepage": "https://github.com/jsfi/hue-color#readme",
"author": {
"name": "Martin Sachse",
"email": "[email protected]",
"url": "http://jsfi.io"
},
"main": "index.js",
"scripts": {
"test": "node node_modules/eslint/bin/eslint.js index.js lib/*.js && node node_modules/mocha/bin/mocha test/**/*_test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jsfi/hue-color.git"
},
"bugs": {
"url": "https://github.com/jsfi/hue-color/issues"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"keywords": [],
"devDependencies": {
"eslint": "^1.9.0",
"expect.js": "^0.3.1",
"mocha": "^2.3.3",
"points-distance": "github:jsfi/points-distance"
},
"dependencies": {
"nearest-point-inside-triangle": "github:jsfi/nearest-point-inside-triangle"
}
}