-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
60 lines (60 loc) · 1.23 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
51
52
53
54
55
56
57
58
59
60
{
"name": "nasa-cli",
"version": "2.0.0",
"description": "Download NASA Picture of the Day from your terminal!",
"main": "cli.js",
"bin": {
"nasa": "cli.js"
},
"preferGlobal": true,
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"fs-extra": "^7.0.0",
"got": "^9.3.0",
"log-symbols": "^2.2.0",
"log-update": "^2.3.0",
"ora": "^3.0.0",
"youtube-dl": "przemyslawpluta/node-youtube-dl#3349cbb6e067b6c9e7605acfa4f9d1ccc895fb0c"
},
"devDependencies": {
"ava": "*",
"execa": "*",
"xo": "*"
},
"xo": {
"esnext": true,
"rules": {
"no-useless-escape": 0,
"no-unused-vars": 0
}
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xxczaki/nasa-cli.git"
},
"keywords": [
"nasa-cli",
"nasa",
"space",
"galaxy",
"astronomy",
"picture",
"day",
"picture-of-the-day",
"cli",
"cli-app",
"npm",
"xo-style",
"nodejs"
],
"author": "Antoni Kepinski <[email protected]> (https://kepinski.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xxczaki/nasa-cli/issues"
},
"homepage": "https://github.com/xxczaki/nasa-cli#readme"
}