-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "workflow-reporter",
"version": "1.0.0",
"private": true,
"description": "A GitHub app to report failed workflow job actions and notify pull request creator with custom report message for the failed workflow job",
"author": "Divyanshu Shekhar <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/divshekhar/workflow-reporter",
"keywords": [
"probot",
"github",
"probot-app"
],
"main": "lib/index.js",
"scripts": {
"tsc": "./node_modules/typescript/bin/tsc",
"build": "tsc",
"dev": "nodemon --exec \"npm start\"",
"start": "npm run build && probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^12.2.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"jest": "^26.6.3",
"nock": "^13.0.5",
"nodemon": "^2.0.15",
"smee-client": "^1.2.2",
"ts-jest": "^26.4.4"
},
"engines": {
"node": ">= 10.13.0"
}
}