-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
45 lines (45 loc) · 992 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
39
40
41
42
43
44
45
{
"name": "debundle",
"version": "0.5.3",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "mocha src/*.spec.js src/**/*.spec.js",
"coverage": "./node_modules/.bin/nyc --exclude \"**/*.spec.js\" npm test && ./node_modules/.bin/nyc report --reporter=html",
"coverageopen": "open coverage/index.html"
},
"keywords": [
"debundle",
"bundle",
"browserify",
"webpack",
"unpack",
"reverse engineering",
"reverse engineer"
],
"author": "",
"license": "ISC",
"dependencies": {
"acorn": "^4.0.11",
"arboreal": "0.0.2",
"archy": "^1.0.0",
"escodegen": "^1.8.1",
"inquirer": "^3.0.1",
"memoize": "^0.1.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"promise-map-series": "^0.2.3",
"recast": "~0.5.7"
},
"devDependencies": {
"mocha": "^3.2.0",
"mock-fs": "^4.1.0",
"nyc": "^10.1.2"
},
"bin": {
"debundle": "src/index.js"
},
"engines": {
"node": ">=6"
}
}