-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 940 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
{
"name": "pkg-stats",
"version": "1.2.1",
"description": "A command line tool for getting download stats for npm packages.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.js",
"watch": "nodemon ./index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kshvmdn/pkg-stats.git"
},
"author": {
"name": "kshvmdn",
"email": "[email protected]",
"url": "http://kshvmdn.me/"
},
"bin": {
"pkgstats": "index.js"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"npm",
"packages",
"download",
"stats"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kshvmdn/pkg-stats/issues"
},
"homepage": "https://github.com/kshvmdn/pkg-stats#readme",
"dependencies": {
"colors": "^1.1.2",
"got": "^6.1.1",
"meow": "^3.7.0",
"x-ray": "^2.0.3"
}
}