forked from carloscastrojumo/github-cherry-pick-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "cherry-pick-action",
"version": "1.1.0",
"private": true,
"description": "A Cherry Pick GitHub Action 🍒",
"main": "dist/index.js",
"engines": {
"node": "16"
},
"scripts": {
"build": "tsc && npm run package ",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts --fix --config .eslintrc.json",
"package": "ncc build ./src/index.ts",
"test": "jest --runInBand",
"all": "npm run test && npm run format && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Xealth/cherry-pick-action.git"
},
"keywords": [
"actions",
"cherry-pick",
"auto",
"automation",
"release",
"branch"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^16.18.25",
"@typescript-eslint/parser": "^5.59.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.39.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}