generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 846 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": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dist-prep": "ncc build src/main.ts -o dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^1.1.0",
"dominos": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@zeit/ncc": "^0.20.5",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}