-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "openapi-portal-comment",
"version": "1.0.0",
"description": "A Probot app",
"author": "Veronica Giaudrone <veronicagg@users.noreply.github.com> (https://github.com/veronicagg/openapi-portal-comment)",
"license": "MIT",
"repository": "https://github.com//openapi-portal-comment.git",
"homepage": "https://github.com//openapi-portal-comment",
"bugs": "https://github.com//openapi-portal-comment/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"dev": "nodemon --ext ts,js --exec \"npm start\"",
"start": "node server.js",
"lint": "tslint --project .",
"fmt": "prettier --write src/**/* && tslint --project . --fix",
"test": "tsc --noEmit -p . && jest --coverage && npm run lint",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@octokit/rest": "^15.6.0",
"@types/bunyan": "^1.8.4",
"@types/node": "^10.5.1",
"@types/request": "^2.47.1",
"@types/request-promise-native": "^1.0.15",
"github-webhook-event-types": "^1.1.0",
"jsonlint": "^1.6.3",
"probot": "^7.0.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"devDependencies": {
"jest": "^23.2.0",
"nodemon": "^1.17.2",
"prettier": "^1.13.7",
"smee-client": "^1.0.2",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.1.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
}
}