-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 860 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
{
"name": "xkcd-cli",
"version": "1.0.4",
"description": "CLI tool for xkcd to find the most relevant to a context search $ xkcd [keywords]",
"main": "index.js",
"dependencies": {
"jsdom": "^3.1.2",
"lodash": "^3.9.3",
"minimist": "^1.1.1",
"nedb": "^1.1.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-release": "^0.12.0",
"jsdom": "^5.4.3",
"progress": "^1.1.8"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/necccc/xkcd-cli"
},
"keywords": [
"xkcd",
"cli",
"fun"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/necccc/xkcd-cli/issues"
},
"homepage": "https://github.com/necccc/xkcd-cli",
"bin": {
"xkcd": "bin/xkcd.js"
}
}