-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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": "semaphore-ci-reporter",
"version": "1.0.0",
"description": "A CI bot reporter for Semaphore CI integration with Github.",
"author": "HKRGH <40249649+hkrgh@users.noreply.github.com >",
"license": "Apache-2.0",
"repository": "https://github.com/hkrgh/semaphore-ci-reporter.git",
"homepage": "https://github.com/hkrgh/semaphore-ci-reporter",
"bugs": "https://github.com/hkrgh/semaphore-ci-reporter/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"lodash.get": "^4.4.2",
"probot": "^6.0.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"unescape": "^1.0.1"
},
"devDependencies": {
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"smee-client": "^1.0.1",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": ["robot.js"]
}
}