-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "polyrepo-update",
"version": "0.1.0",
"description": "Bulk update packages",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"deps:pkg": "ncu",
"deps:update": "ncu -a",
"test": "standard && npm run deps && NODE_ENV=test node test",
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test.js"
},
"repository": "polyrepo/polyrepo-update",
"keywords": [
"bulk",
"update",
"package",
"dependency",
"module",
"local",
"author"
],
"license": "MIT",
"dependencies": {
"JSONStream": "^1.0.6",
"cliclopts": "^1.1.1",
"minimist": "^1.2.0",
"npm-check-updates": "^2.2.3",
"readdirp": "^2.0.0",
"split2": "^1.0.0",
"text-table": "^0.2.0",
"through2": "^2.0.0"
},
"devDependencies": {
"dependency-check": "^2.5.1",
"standard": "^5.3.1",
"tape": "^4.2.0"
},
"files": [
"index.js",
"bin/*"
],
"bin": {
"polyrepo-update": "./bin/cli.js"
}
}