-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "pkgswap",
"version": "0.1.0",
"description": "A package.json manager for npm 5",
"main": "pkgswap.js",
"bin": "cli.js",
"scripts": {
"test": "standard && npm run dep && tap test/*.spec.js",
"coverage": "standard && npm run dep && tap --cov --coverage-report=lcov --100 test/*.spec.js",
"dep": "dependency-check . && dependency-check . --unused --no-dev"
},
"keywords": [
"npm",
"package manager",
"packages"
],
"repository": {
"type": "git",
"url": "https://github.com/scriptollc/pkgswap"
},
"author": "Todd Kennedy <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^2.3.0",
"debug": "^3.1.0",
"fast-json-parse": "^1.0.3",
"fast-safe-stringify": "^1.2.1",
"minimist": "^1.2.0",
"run-parallel": "^1.1.6",
"run-series": "^1.1.4",
"run-waterfall": "^1.1.3",
"sanitize-filename": "^1.6.1"
},
"devDependencies": {
"dependency-check": "^2.9.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.2",
"standard": "^10.0.3",
"tap": "^10.7.3"
}
}