-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "bundletool-runner",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action for installing Google bundletool",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts -o lib",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"configure": "husky add .husky/pre-commit 'npx lint-staged'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enniel/bundletool-runner.git"
},
"keywords": [
"actions",
"bundletool",
"android"
],
"author": "Evgenij Razumov",
"license": "MIT",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/exec": "^1.1.0",
"@actions/tool-cache": "1.7.1"
},
"devDependencies": {
"@types/node": "12.20.25",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@vercel/ncc": "^0.31.1",
"eslint": "7.31.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"typescript": "4.4.4"
},
"lint-staged": {
"src/*.ts": "yarn lint"
}
}