forked from ncipollo/release-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 944 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
38
39
40
{
"name": "release-action",
"version": "1.1.0",
"private": true,
"description": "An action which manages a github release",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib/*",
"debug": "yarn clean && yarn install && yarn build",
"release": "yarn clean && yarn install --production && yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ncipollo/release-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@types/glob": "^7.1.4",
"glob": "^7.2.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}