forked from vvo/npm-pkgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 956 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
{
"name": "npm-pkgr",
"version": "0.7.0",
"description": "Cache `npm install` results by hashing dependencies",
"main": "index.js",
"scripts": {
"test": "tape -r ./test/bootstrap.js test/spec/*.js"
},
"bin": {
"npm-pkgr": "./cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/vvo/npm-pkgr.git"
},
"author": "Vincent Voyer <vincent@zeroload.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vvo/npm-pkgr/issues"
},
"homepage": "https://github.com/vvo/npm-pkgr",
"dependencies": {
"contra": "^1.5.2",
"debug": "^2.0.0",
"jsonfile": "^2.0.0",
"lockfile": "^1.0.0",
"minimist": "^1.1.0",
"mkdirp": "^0.5.0",
"ncp": "^2.0.0",
"npm-version": "^1.1.0",
"rimraf": "^2.2.6"
},
"devDependencies": {
"lodash": "^4",
"mock-fs": "^3.4.0",
"proxyquire": "^1.0.1",
"shelljs": "^0.6.0",
"tape": "^4.5.1",
"uuid": "^2.0.1"
}
}