generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "ts-standard --fix **/*.ts",
"lint": "ts-standard src/*.ts",
"package": "ncc build src/main.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@azure/identity": "^1.2.5",
"@azure/storage-blob": "^12.5.0",
"glob": "^7.1.6",
"ts-standard": "^10.0.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@vercel/ncc": "^0.27.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^4.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}