-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 947 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
37
38
39
40
41
{
"name": "name-that-color",
"version": "0.1.0",
"description": "A command line utility that uses the library that the name that color project (http://chir.ag/projects/ntc/) uses that also provides additional functionality",
"bugs": {
"url": "http://github.com/ryanzec/name-that-color/issues"
},
"contributors": [
{
"name": "Ryan Zec",
"email": "[email protected]"
}
],
"engines": {
"node": ">=0.10.24"
},
"keywords": [
"color",
"name that color"
],
"main": "./lib/index.js",
"bin": {
"name-that-color": "./lib/index.js"
},
"dependencies": {
"chalk": "0.5.1",
"onecolor": "2.4.1"
},
"devDependencies": {},
"preferGlobal": "true",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ryanzec/name-that-color/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/ryanzec/name-that-color.git"
}
}