-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "rewrite-shrinkwrap-urls",
"version": "1.1.0",
"description": "Rewrite URLs in npm-shrinkwrap.json or package-lock.json",
"main": "index.js",
"bin": {
"rewrite-shrinkwrap-urls": "cli.js"
},
"scripts": {
"pretest": "standard",
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nexdrew/rewrite-shrinkwrap-urls.git"
},
"keywords": [
"shrinkwrap",
"rewrite",
"url",
"urls",
"registry",
"package-lock"
],
"author": "nexdrew",
"license": "ISC",
"bugs": {
"url": "https://github.com/nexdrew/rewrite-shrinkwrap-urls/issues"
},
"homepage": "https://github.com/nexdrew/rewrite-shrinkwrap-urls#readme",
"dependencies": {
"jsonfile": "^5.0.0",
"sywac": "^1.0.1"
},
"devDependencies": {
"ava": "^2.0.0",
"coveralls": "^3.0.3",
"del": "^5.0.0",
"nyc": "^14.0.0",
"standard": "^13.0.1",
"standard-version": "^6.0.1"
},
"files": [
"cli.js",
"index.js",
"lib/"
]
}