-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.72 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
57
58
59
{
"name": "@chromeos/android-package-signer",
"author": "Alexander Paul Nohe",
"license": "Apache-2.0",
"version": "0.1.3",
"description": "Implementation of android package signing with zipalign that runs in a browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"test": "tsc -p . && jasmine-ts",
"js:lint": "eslint .",
"js:fix": "eslint . --fix",
"prettier:lint": "prettier -c .",
"prettier:fix": "prettier --write .",
"start": "node dist/index.js",
"deploy": "npm run build && npm publish",
"deploy:patch": "npm version patch && npm run build && npm publish",
"deploy:minor": "npm version minor && npm run build && npm publish",
"deploy:major": "npm version major && npm run build && npm publish",
"postbuild": "node ./.version-updater.js"
},
"files": [
"dist/lib",
"dist/index.d.ts",
"dist/index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chromeos/android-package-sign-js.git"
},
"keywords": [
"zipalign",
"android",
"packagesigning"
],
"dependencies": {
"@types/node-forge": "^0.10.4",
"buffer": "^6.0.3",
"jszip": "^3.7.1",
"node-forge": "^0.10.0"
},
"devDependencies": {
"@types/jasmine": "^3.9.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^3.9.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.2"
}
}