-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.72 KB
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
{
"name": "@mintplayer/actions",
"version": "1.1.0",
"private": true,
"description": "More generic GitHub Action to cherry-pick merged commits into release branches",
"repository": {
"type": "git",
"url": "https://github.com/MintPlayer/github-actions",
"directory": ""
},
"bugs": {
"email": "info@mintplayer.com",
"url": "https://github.com/MintPlayer/actions/issues"
},
"scripts": {
"build": "tsc",
"pack:delay": "ncc build lib/delay -o dist/delay --minify",
"pack:cherry-pick": "ncc build lib/cherry-pick -o dist/cherry-pick --minify",
"pack:get-gpr-version": "ncc build lib/get-gpr-version -o dist/get-gpr-version --minify",
"pack:get-npmjs-version": "ncc build lib/get-npmjs-version -o dist/get-npmjs-version --minify",
"pack:publish-npm-packages": "ncc build lib/publish-npm-packages -o dist/publish-npm-packages --minify",
"all": "npm run build && npm run pack:delay && npm run pack:cherry-pick && npm run pack:get-gpr-version && npm run pack:get-npmjs-version && npm run pack:publish-npm-packages",
"test": "jest"
},
"keywords": [
"github",
"action",
"cherry-pick",
"release"
],
"author": {
"name": "Pieterjan De Clippel",
"url": "https://github.com/MintPlayer",
"email": "info@mintplayer.com"
},
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@jsdevtools/npm-publish": "^4.1.5",
"@octokit/rest": "^21.0.2",
"axios": "^1.7.7",
"fast-glob": "^3.3.2",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@vercel/ncc": "^0.38.1",
"github-action-ts-run-api": "^3.0.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}