-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
50
51
52
53
54
55
{
"name": "@nikku/merge-me",
"version": "0.14.2",
"description": "Automatically merges your GitHub pull requests once all checks pass",
"author": "Nico Rehwaldt <[email protected]>",
"license": "MIT",
"repository": "https://github.com/nikku/merge-me.git",
"publishConfig": {
"access": "public"
},
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"all": "run-s lint lint:types test-coverage",
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "eslint .",
"lint:types": "tsc --pretty",
"test": "mocha test/*",
"test-coverage": "nyc -x=lib/recorder.js -x=test/recording.js --reporter=lcov --reporter=html --reporter=text mocha test/*",
"auto-test": "nodemon --exec npm test"
},
"dependencies": {
"probot": "^10.19.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-plugin-bpmn-io": "^0.12.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.3",
"nyc": "^15.1.0",
"smee-client": "^1.2.2",
"typescript": "^4.4.4"
},
"engines": {
"node": ">= 10.21.0"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"**/*.js"
]
},
"files": [
"lib",
"app.yml",
"index.js"
]
}