forked from actions/create-release
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "create-release",
"version": "2.0.4",
"description": "Create a Release in a GitHub Action",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.js",
"lint": "eslint 'src/**.js' 'tests/**.js' --fix",
"precommit": "yarn build && git add dist/",
"prepare": "husky install",
"test": "eslint 'src/**.js' 'tests/**.js' && jest --coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comnoco/create-release-action"
},
"keywords": [
"actions",
"node"
],
"author": "Comnoco Ltd",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"husky": "^8.0.0",
"jest": "29.4.1",
"prettier": "2.8.3",
"standard-version": "^9.5.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/create-release.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}