-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "fixup-dog",
"version": "1.0.0",
"description": "Github app that's a watchdog for fixup commits in your PRs!",
"author": "Dominik Rowicki <[email protected]>",
"license": "ISC",
"repository": "https://github.com/papermana/fixup-dog.git",
"homepage": "https://github.com/papermana/fixup-dog",
"bugs": "https://github.com/papermana/fixup-dog/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run src/index.js",
"lint": "prettier-eslint --write 'src/**/*.js'",
"test": "jest && prettier-eslint --list-different 'src/**/*.js'",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^7.0.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"prettier-eslint-cli": "^4.7.1",
"smee-client": "^1.0.2"
},
"engines": {
"node": ">= 8.3.0"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}