generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.93 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
59
60
61
62
{
"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'",
"lint": "eslint src/**/*.ts",
"package": "yarn cleanup && yarn package:autogen-readme-list && yarn package:weekly-contributions && yarn package:show-visual-diffs-in-comment && yarn package:get-deployment-target-url && yarn package:update-machine-key-github && yarn package:update-machine-key-tfvars && yarn package:create-openapi-types && yarn package:check-all-issues",
"package:check-all-issues": "ncc build lib/check-all-issues.js --source-map --license licenses.txt -o dist/check-all-issues",
"package:update-machine-key-github": "ncc build lib/update-machine-key-github.js --source-map --license licenses.txt -o dist/update-machine-key-github",
"package:update-machine-key-tfvars": "ncc build lib/update-machine-key-tfvars.js --source-map --license licenses.txt -o dist/update-machine-key-tfvars",
"package:create-openapi-types": "rm -rf dist/create-openapi-types/ && ncc build lib/create-openapi-types.js --source-map --license licenses.txt -o dist/create-openapi-types",
"package:autogen-readme-list": "ncc build lib/autogen-readme-list/autogen-readme-list.js --source-map --license licenses.txt -o dist/autogen-readme-list",
"package:weekly-contributions": "ncc build lib/weekly-contributions.js --source-map --license licenses.txt -o dist/weekly-contributions",
"package:show-visual-diffs-in-comment": "ncc build lib/show-visual-diffs-in-comment.js --source-map --license licenses.txt -o dist/show-visual-diffs-in-comment",
"package:get-deployment-target-url": "ncc build lib/get-deployment-target-url.js --source-map --license licenses.txt -o dist/get-deployment-target-url",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"cleanup": "rm -rf dist/create-openapi-types/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"@google-cloud/storage": "^5.20.5",
"@types/libsodium-wrappers": "^0.7.10",
"filestack-js": "^3.25.0",
"globby": "^13.1.1",
"libsodium-wrappers": "^0.7.10",
"node-fetch": "^3.2.10",
"openapi-typescript": "^5.4.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/node": "^20.1",
"@typescript-eslint/parser": "^6.3",
"@vercel/ncc": "^0.38",
"eslint": "^8",
"eslint-plugin-github": "^4",
"eslint-plugin-jest": "^27",
"eslint-plugin-prettier": "^5",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "^3.0.1",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
}
}