-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "string-bugzilla-bot",
"version": "1.0.0",
"description": "A Probot app",
"author": "Areeb Jamal <jamal.areeb@gmail.com>",
"license": "ISC",
"repository": "https://github.com//string-bugzilla-bot.git",
"homepage": "https://github.com//string-bugzilla-bot",
"bugs": "https://github.com//string-bugzilla-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run",
"lint": "standard **/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@types/nock": "^11.1.0",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.44",
"auto-label": "github:iamareebjamal/auto-label",
"nock": "^13.0.5",
"node-fetch": "^2.6.0",
"probot": "^9.9.0",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^26.0.15",
"@types/node": "^13.13.0",
"@types/node-fetch": "^2.5.3",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^25.5.3",
"jest-junit": "^10.0.0",
"nodemon": "^2.0.0",
"smee-client": "^1.1.0",
"standard": "^14.3.3",
"ts-jest": "^25.5.0",
"typescript": "^3.9.7",
"typescript-eslint-parser": "^20.1.1"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "results.xml"
},
"probot": {
"apps": [
"./lib/index.js",
"auto-label"
]
}
}