-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 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
42
43
44
45
46
47
{
"name": "retidy",
"version": "1.5.1",
"description": "Extract, unminify, and beautify (\"retidy\") each file from a webpack/parcel bundle",
"main": "dist/index.js",
"bin": {
"retidy": "./cli/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xmader/retidy.git"
},
"author": "Xmader",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xmader/retidy/issues"
},
"homepage": "https://github.com/Xmader/retidy#readme",
"keywords": [
"ast",
"debundle",
"unpack",
"parcel",
"webpack",
"reverse engineering",
"reverse engineer"
],
"dependencies": {
"@babel/parser": "^7.7.3",
"@babel/traverse": "^7.7.2",
"@babel/types": "^7.7.2",
"ast-types": "^0.13.2",
"fs-extra": "^8.1.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/babel__traverse": "^7.0.8",
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.11",
"@types/yargs": "^13.0.3",
"typescript": "^3.5.2"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
}
}