-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "create-release-with-debugapk",
"version": "1.0.0",
"description": "Create a release with debug apk as additional asset",
"main": "dist/index.js",
"repository": "git@github:underwindfall/create-release-with-debugapk.git",
"author": "underwindfall <14819756+underwindfall@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.9.1",
"@actions/exec": "1.0.0",
"@actions/github": "1.0.0"
},
"devDependencies": {
"@zeit/ncc": "0.20.4",
"glob-gitignore": "^1.0.14",
"jest": "^25.2.7",
"prettier": "^1.16.4"
},
"scripts": {
"test": "jest",
"build": "ncc build src/main.js && yarn prettier",
"prettier": "node ./helper/prettier.js"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/main.js",
"!<rootDir>/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}