forked from vvo/npm-pkgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 964 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.2.3",
"description": "Cache `npm install` results by hashing dependencies",
"main": "index.js",
"scripts": {
"test": "find test/spec/*.js -print0 | xargs -n 1 -0 node"
},
"bin": {
"npm-pkgr": "./cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/vvo/npm-pkgr.git"
},
"author": "Vincent Voyer <[email protected]>",
"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": "^3.10.1",
"prova": "^2.1.2",
"proxyquire": "^1.0.1",
"shelljs": "^0.5.3",
"tmp": "0.0.28",
"uuid": "^2.0.1"
}
}