-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
40 lines (40 loc) · 1018 Bytes
/
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
{
"name": "automerge-action",
"version": "0.16.3",
"description": "GitHub action to automatically merge pull requests",
"main": "lib/api.js",
"author": "Pascal",
"license": "MIT",
"private": true,
"bin": {
"automerge-action": "./bin/automerge.js"
},
"scripts": {
"test": "jest",
"it": "node it/it.js",
"lint": "prettier -l lib/** test/** && eslint .",
"compile": "ncc build bin/automerge.js --license LICENSE -o dist",
"prepublish": "yarn lint && yarn test && yarn compile"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/rest": "^20.1.0",
"argparse": "^2.0.1",
"fs-extra": "^11.2.0",
"object-resolve-path": "^1.1.1",
"tmp": "^0.2.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"dotenv": "^16.4.5",
"eslint": "^9.0.0",
"eslint-plugin-jest": "^28.2.0",
"globals": "^15.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}