-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 871 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
{
"name": "npm-package-checker",
"version": "1.0.5",
"homepage": "",
"author": {
"name": "Sema (José Manuel García)",
"email": "jmanuelgarciagarcia@gmail.com"
},
"description": "Module to check whether a component has been released with a specific version or not",
"main": "index.js",
"keywords": [
"command-line",
"tool",
"util",
"npm",
"package",
"version",
"check"
],
"repository": {
"type": "git",
"url": "git+https://github.com/semagarcia/npm-package-checker.git"
},
"bugs": {
"url": "https://github.com/semagarcia/npm-package-checker/issues"
},
"scripts": {
"start": "node index.js"
},
"license": "ISC",
"preferGlobal": true,
"dependencies": {
"chalk": "^1.1.3",
"request": "^2.79.0",
"yargs": "^6.4.0"
},
"bin": {
"npm-package-checker": "index.js"
}
}