-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 841 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
{
"name": "automerge-action",
"version": "0.0.1",
"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 .",
"prepublish": "yarn lint && yarn test"
},
"dependencies": {
"@octokit/rest": "^18.0.6",
"argparse": "^2.0.1",
"fs-extra": "^9.0.1",
"object-resolve-path": "^1.1.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.2",
"prettier": "^2.1.2"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}