-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1 KB
/
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
48
49
50
{
"name": "wikipics",
"version": "1.0.0",
"description": "Download Wikipedia Picture of the Day straight from the Command line",
"main": "cli.js",
"bin": {
"wikipics": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDotJS/wikipics.git"
},
"keywords": [
"download",
"wikipedia",
"picture",
"day",
"command",
"easy",
"wiki"
],
"dependencies": {
"chalk": "^2.0.1",
"cheerio": "^1.0.0-rc.2",
"fs-extra": "^4.0.0",
"got": "^7.1.0",
"log-update": "^2.0.0",
"ora": "^1.3.0",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"ava": "*",
"xo": "*"
},
"xo": {
"esnext": true
},
"author": "Rishi Giri <rushforlinux@gmail.com> (http://rishigiri.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeDotJS/wikipics/issues"
},
"homepage": "https://github.com/CodeDotJS/wikipics#readme"
}