This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
59 lines (59 loc) · 1.72 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "npm-shrinkwrap",
"version": "6.1.0",
"description": "A consistent shrinkwrap tool",
"keywords": [],
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/uber/npm-shrinkwrap.git",
"main": "index",
"homepage": "https://github.com/uber/npm-shrinkwrap",
"bugs": {
"url": "https://github.com/uber/npm-shrinkwrap/issues",
"email": "raynos2@gmail.com"
},
"dependencies": {
"array-find": "^0.1.1",
"array-flatten": "^2.1.0",
"error": "^4.2.0",
"graceful-fs": "^4.1.2",
"json-diff": "^0.3.1",
"minimist": "^1.1.0",
"msee": "^0.1.1",
"npm": "^2.15.10",
"rimraf": "^2.2.8",
"run-parallel": "^1.1.6",
"run-series": "^1.0.2",
"safe-json-parse": "^2.0.0",
"semver": "^4.0.3",
"sorted-object": "^1.0.0",
"string-template": "^0.2.0"
},
"devDependencies": {
"fixtures-fs": "^2.0.0",
"istanbul": "~0.3.2",
"jshint": "2.5.6",
"pre-commit": "0.0.9",
"tap-spec": "~1.0.0",
"tape": "^3.0.2"
},
"scripts": {
"test": "npm run jshint -s && NODE_ENV=test node test/index.js | tap-spec",
"unit-test": "NODE_ENV=test node test/npm-shrinkwrap.js | tap-spec",
"jshint-pre-commit": "jshint --verbose $(git diff --cached --name-only | grep '\\.js$')",
"jshint": "jshint --verbose .",
"cover": "istanbul cover --report none --print detail test/index.js",
"view-cover": "istanbul report html && open ./coverage/index.html",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)"
},
"pre-commit": [
"jshint-pre-commit",
"unit-test"
],
"bin": {
"npm-shrinkwrap": "./bin/cli.js"
},
"license": "MIT",
"engine": {
"node": ">= 0.10.x"
}
}