-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "action-get-or-create-release",
"private": true,
"description": "GitHub Action that creates a GitHub release",
"engines": {
"node": "~20.14.0"
},
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run lint && npm run test && npm run clean",
"build": "ncc build src/main.js -s",
"debug": "node -r dotenv/config src/main.js",
"clean": "shx rm -rf dist/*",
"lint": "prettier --write . && eslint . --cache --fix",
"test": "jest"
},
"license": "ISC",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.3.0",
"bytes": "^3.1.0",
"issue-parser": "^6.0.0",
"mime-types": "^2.1.32",
"mustache": "^4.2.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^27.1.1",
"jest": "^29.1.2",
"prettier": "^2.3.2",
"shx": "^0.3.3"
},
"jest": {
"testEnvironment": "node"
}
}