generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 994 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
39
40
41
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.2.0",
"@octokit/rest": "^16.43.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@vercel/ncc": "^0.36.1",
"jest": "^29.6.1",
"jest-circus": "^24.9.0",
"js-yaml": "^3.13.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}