-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 824 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
{
"name": "npm-package-info",
"version": "0.1.0",
"description": "fetches the package information for an npm package",
"main": "index.js",
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesseditson/npm-package.git"
},
"bin": {
"npm-package": "./bin/npm-package"
},
"keywords": [
"npm",
"package"
],
"author": "Jesse Ditson <jesse.ditson@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jesseditson/npm-package/issues"
},
"homepage": "https://github.com/jesseditson/npm-package#readme",
"dependencies": {
"minimist": "^1.2.0",
"realize-package-specifier": "^3.0.1",
"registry-url": "^3.0.3",
"superagent": "^3.7.0"
},
"devDependencies": {
"tape": "^4.5.1"
}
}