-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "tests-checker",
"version": "1.0.0",
"description": "Requires writing the tests in Pull Requests.",
"author": "Maks Rafalko <[email protected]> (https://github.com/infection/tests-checker)",
"license": "ISC",
"repository": "https://github.com/infection/tests-checker.git",
"homepage": "https://github.com/infection/tests-checker",
"bugs": "https://github.com/infection/tests-checker/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY_BASE64 | base64 -d) npm start",
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "tslint -c tslint.json '{src,test}/**/*.ts'",
"lint-fix": "tslint -c tslint.json --fix '{src,test}/**/*.ts'",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"minimatch": "^3.0.4",
"probot": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/minimatch": "^3.0.3",
"@types/node": "^10.5.2",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^23.4.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"ts-jest": "^23.0.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^18.0.0"
},
"engines": {
"node": ">= 8.3.0"
}
}