forked from phstc/probot-security-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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": "probot-secret-remediation",
"version": "2.0.0",
"description": "Create remediation issue for push protection fix-later bypass https://github.com/KittyChiu/probot-secret-remediation",
"author": "Kitty Chiu",
"license": "ISC",
"homepage": "https://github.com/KittyChiu/probot-secret-remediation",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"probot": "^12.2.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"jest": "^29.0.0",
"nodemon": "^2.0.22",
"smee-client": "^1.2.2",
"standard": "^17.0.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= 10.13.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
}
}