forked from andyburke/boxcutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 930 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
{
"name": "boxcutter",
"version": "1.2.0",
"description": "A utility knife for interacting with package.json (or other json files)",
"main": "index.js",
"bin": {
"boxcutter": "./cli.js"
},
"scripts": {
"test": "tape test/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyburke/boxcutter.git"
},
"keywords": [
"package.json"
],
"author": "Andy Burke <[email protected]> (https://github.com/andyburke)",
"contributors": [
"Greg Cardoni <[email protected]> (https://cardoni.net)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andyburke/boxcutter/issues"
},
"homepage": "https://github.com/andyburke/boxcutter#readme",
"engine": "node >= 4.3.0",
"dependencies": {
"delver": "^1.1.0",
"extend": "^3.0.0",
"yargs": "^4.2.0"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
}
}