forked from dlemstra/code-sign-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 843 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
{
"name": "code-sign-action",
"version": "1.0.0",
"description": "Sign files with a code signing certificate.",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js -m",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apperon/code-sign-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/apperon/code-sign-action/issues"
},
"homepage": "https://github.com/apperon/code-sign-action#readme",
"dependencies": {
"@actions/core": "^1.6.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.9.0",
"typescript": "^4.5.5"
}
}