-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
56 lines (56 loc) · 1.81 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
51
52
53
54
55
56
{
"name": "app-info-parser",
"version": "1.1.6",
"description": "Exact info from apk or ipa file.",
"main": "./src/index.js",
"scripts": {
"test": "node ./example/node.js",
"build": "rimraf src/* && babel lib -d src",
"build:browser": "rimraf dist/* && browserify lib/index.js -t [ babelify ] -s AppInfoParser -d | exorcist ./dist/app-info-parser.js.map | derequire > dist/app-info-parser.js",
"minify": "uglifyjs ./dist/app-info-parser.js -o ./dist/app-info-parser.min.js -c -m --source-map \"url='./dist/app-info-parser.mini.js.map'\"",
"dist": "npm run build:browser && npm run minify",
"release": "standard-version",
"release:major": "yarn release -- --release-as major",
"release:feat": "yarn release -- --release-as minor",
"release:fix": "yarn release -- --release-as patch",
"release:test": "yarn release --prerelease alpha"
},
"bin": "./bin/index.js",
"browser": {
"./src/bplist-parser/index.js": "./src/bplist-parser/browser.js"
},
"keywords": [
"ipa",
"apk",
"parser",
"browser",
"node"
],
"author": "Quincy Chen <[email protected]>",
"license": "MIT",
"dependencies": {
"bplist-parser": "^0.2.0",
"bytebuffer": "^5.0.1",
"commander": "^7.2.0",
"cgbi-to-png": "^1.0.7",
"isomorphic-unzip": "^1.1.5",
"plist": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"derequire": "^2.0.6",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"exorcist": "^1.0.1",
"rimraf": "^2.6.2",
"uglify-es": "^3.3.9"
}
}