-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
56
{
"name": "4-eyesbot",
"version": "1.0.0",
"description": "Compliance checking bot",
"author": "Per Ploug <per.ploug@zalando.de>",
"license": "MIT",
"repository": "https://github.com/perploug/4-eyesbot.git",
"homepage": "https://github.com/perploug/4-eyesbot",
"bugs": "https://github.com/perploug/4-eyesbot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "npm build; nodemon --inspect --exec \"probot run ./lib/index.js\"",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@types/request-promise": "^4.1.42",
"license-lookup": "0.0.13",
"pom-parser": "^1.1.1",
"probot": "^7.5.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/nock": "^9.3.1",
"@types/node": "^10.12.21",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^23.4.0",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"smee-client": "^1.0.2",
"standard": "^10.0.3",
"ts-jest": "^23.10.5",
"typescript": "^3.3.1",
"typescript-eslint-parser": "^18.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
}
}