-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1014 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
{
"name": "action-is-app-version-updated",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:Diwala/action-is-app-version-updated.git",
"author": "Snorre lothar von Gohren Edwin <[email protected]>",
"license": "MIT",
"scripts": {
"build": "ncc build index.js",
"lint": "eslint ./"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn build"
}
},
"dependencies": {
"@actions/core": "^1.1.3",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"gradle-to-js": "^2.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"prettier": "^1.18.2"
}
}