-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "release-js-action",
"version": "0.0.1",
"description": "GitHub Action to release pre-built JavaScript action",
"main": "index.js",
"repository": "[email protected]:satackey/release-js-action.git",
"author": "satackey <[email protected]>",
"license": "MIT",
"scripts": {
"pack": "ttsc && ncc build -o dist --v8-cache ts-dist/index.js",
"preprocess": "ts-auto-guard src/ActionConfig.ts",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.2.6",
"actions-exec-listener": "^0.0.2",
"js-yaml": "^3.13.1",
"rimraf": "^3.0.2",
"string-format": "^2.0.0"
},
"devDependencies": {
"@types/child-process-promise": "^2.2.1",
"@types/jest": "^26.0.15",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.9",
"@types/string-format": "^2.0.0",
"@zeit/ncc": "^0.22.0",
"child-process-promise": "^2.2.1",
"jest": "^25.2.7",
"ts-jest": "^25.3.1",
"ts-node": "^9.0.0",
"ttypescript": "^1.5.12",
"typescript": "^3.9.7",
"typescript-is": "^0.16.3"
}
}