-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "zincr",
"version": "1.0.4",
"description": "Compliance Bot for Zalando",
"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",
"start": "probot run ./lib/index.js",
"test": "nyc jest **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"license-lookup": "0.0.20",
"probot": "^7.5.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/nock": "^9.3.1",
"@types/node": "^10.12.21",
"@types/request-promise": "^4.1.42",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^24.5.0",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"nyc": "^13.3.0",
"smee-client": "^1.0.2",
"standard": "^10.0.3",
"ts-jest": "^24.0.1",
"typescript": "^3.3.1",
"typescript-eslint-parser": "^18.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
}
}