-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 909 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
{
"name": "github-attach-release-action",
"version": "1.0.3",
"private": true,
"description": "Attaches a file to an existing Github release",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moblieposse/github-attach-release-action.git"
},
"keywords": [],
"author": "Sean Schofield",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"mime-types": "^2.1.32",
"semver": "^7.3.5"
},
"devDependencies": {
"@semantic-release/github": "^8.0.1",
"@types/node": "^16.10.2",
"@types/semver": "^7.3.8",
"@zeit/ncc": "^0.22.3",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}