-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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": "cross-repo-cherrypick-action",
"version": "1.1.0-SNAPSHOT",
"private": false,
"description": "GitHub action to automatically cherry-pick pull requests across remotes",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**.ts\"",
"format-check": "prettier --check \"**.ts\"",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --silent",
"test-verbose": "jest",
"all": "npm run format && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jschmid1/cross-repo-cherrypick-action.git"
},
"keywords": [
"actions",
"backport",
"cherry-pick"
],
"author": "jschmid1",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/dedent": "^0.7.1",
"dedent": "^1.5.3",
"execa": "^9.3.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@vercel/ncc": "^0.38.1",
"jest": "^27.5.1",
"prettier": "3.3.3",
"ts-jest": "^27.1.2",
"typescript": "^4.9.5"
}
}