forked from sorenlouv/backport-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "backport-github-action",
"version": "8.9.7",
"private": true,
"scripts": {
"build": "yarn ncc build src/index.ts",
"prepare": "husky install",
"lint": "eslint './**/*.{ts,js}'",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@octokit/action": "^4.0.8",
"@octokit/graphql": "^5.0.1",
"backport": "^8.9.7",
"husky": "^8.0.1"
},
"devDependencies": {
"@types/core-js": "^2.5.5",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"lint-staged": ">=13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}