-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "typescript-action",
"version": "0.1.0",
"private": true,
"description": "TypeScript template action",
"engines": {
"node": ">=16.13.0"
},
"main": "build/index.js",
"scripts": {
"all": "yarn clean && yarn build && yarn format && yarn package && yarn test",
"build": "rm -rf actions && tsc && tscpaths -p tsconfig.json -s ./src -o ./build",
"clean": "rm -rf build node_modules/.cache",
"format": "yarn lint --fix && prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --config .eslintrc.js src",
"package": "./bin/package",
"quick-package": "./bin/quick-package",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,.d.ts}": [
"yarn format"
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.0",
"@octokit/rest": "^18.0.9",
"@slack/web-api": "^6.9.0",
"jira-client": "^8.2.2",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"node-fetch": "2",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@octokit/webhooks": "^9.23.0",
"@octokit/webhooks-types": "^7.3.1",
"@types/dateformat": "^5.0.0",
"@types/jest": "^27.4.1",
"@types/jira-client": "^7.1.4",
"@types/lodash": "^4.14.199",
"@types/mustache": "^4.2.1",
"@types/node": "^17.0.24",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/parser": "^5.48.2",
"@vercel/ncc": "0.33.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-jsdoc": "^39.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^8.0.3",
"jest": "^26.6.3",
"jest-circus": "^27.1.0",
"js-yaml": "^4.1.0",
"lint-staged": "^14.0.1",
"prettier": "2.5.1",
"ts-jest": "^26.5.6",
"tscpaths": "^0.0.9",
"typescript": "^4.6.3"
}
}