-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "rebuild-pull-requests",
"version": "0.0.1",
"description": "Automatically rebuild stale pull requests",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ext .js src",
"test": "npm run lint && jest --coverage --verbose || echo 'Skipping tests not found'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhosys/github-action-rebuild-pull-requests.git"
},
"keywords": [
"GitHub",
"GitHub Action",
"Actions",
"Pull-Requests",
"PR",
"Rebuild",
"Stale"
],
"author": "Rhosys <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rhosys/github-action-rebuild-pull-requests/issues"
},
"homepage": "https://github.com/rhosys/github-action-rebuild-pull-requests#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.1.1",
"axios": "^0.27.2",
"json-stringify-safe": "^5.0.1",
"luxon": "^3.4.2"
},
"engines": {
"node": "^16.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"eslint": "^8.13.0",
"eslint-config-cimpress-atsquad": "^1.0.67",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-node": "^11.1.0",
"jest": "^28.0.2"
}
}