forked from pascalgn/automerge-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 961 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
{
"name": "automerge-action",
"version": "0.13.0",
"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": {
"@octokit/rest": "^18.5.3",
"argparse": "^2.0.1",
"fs-extra": "^10.0.0",
"object-resolve-path": "^1.1.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@vercel/ncc": "^0.28.6",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.1",
"prettier": "^2.3.0"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}