generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.55 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "typescript-action",
"version": "2.0.1",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"start": "ts-node ./src/main.ts",
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"all": "npm run build && npm run format && npm run package && npm test",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.6.0",
"@azure/arm-appservice": "^12.0.0",
"@azure/identity": "^2.0.4",
"chalk": "^4.1.2",
"common-tags": "^1.8.2",
"date-fns": "^2.28.0",
"promisify-child-process": "^4.1.1",
"ts-node": "^10.8.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@swc/core": "^1.2.197",
"@swc/helpers": "^0.3.17",
"@types/common-tags": "^1.8.1",
"@types/node": "^16.10.5",
"@vercel/ncc": "^0.31.1",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"regenerator-runtime": "^0.13.9",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
}
}