-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "delete-draft-releases",
"version": "1.0.0",
"description": "Delete all draft releases",
"main": "dist/index.js",
"scripts": {
"lint": "eslint 'src/**.js' 'tests/**.js' --fix",
"test": "eslint 'src/**.js' 'tests/**.js' && jest --coverage",
"build": "ncc build src/main.js",
"precommit": "npm run build && git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugo19941994/delete-draft-releases"
},
"keywords": [
"actions",
"node"
],
"author": "Hugo Ferrando Seage <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0",
"parse-duration": "^1.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^27.1.0",
"prettier": "^2.0.5"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/delete-draft-releases.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}