forked from dconnolly/chromecast-backgrounds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1007 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
42
43
44
45
46
47
{
"name": "chromecast-backgrounds",
"version": "0.2.0",
"description": "Get all those beautiful backgrounds images from the Chromecast home view.",
"license": "MIT",
"bin": {
"chromecast-backgrounds": "cli.js"
},
"repository": "dconnolly/chromecast-backgrounds",
"author": {
"name": "Deirdre Connolly",
"email": "durumcrustulum@gmail.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha test.js"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"chromecast",
"backgrounds",
"images",
"chrome",
"cli"
],
"devDependencies": {
"grunt-contrib-jshint": "~0.7.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.5.0",
"load-grunt-tasks": "~0.2.0",
"time-grunt": "~0.2.0",
"jshint-stylish": "~0.1.3",
"mocha": "~1.18.2"
},
"dependencies": {
"request": "~2.33.0",
"lodash": "~2.4.1",
"q": "~1.0.0",
"nopt": "~2.2.0",
"chalk": "~0.4.0"
}
}