forked from Dana-Pr/code-sign-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 691 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 691 Bytes
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
{
"name": "code-sign-action",
"version": "2.0.0",
"description": "Sign files with a code signing certificate.",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanaBear/code-sign-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DanaBear/code-sign-action/issues"
},
"homepage": "https://github.com/DanaBear/code-sign-action#readme",
"dependencies": {
"@actions/core": "^1.8.2"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@zeit/ncc": "^0.22.3",
"typescript": "^4.7.2"
}
}