-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
64
65
66
67
{
"name": "github-app-preangel",
"version": "0.0.5",
"private": true,
"description": "A Probot App for PreAngel",
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/preangel/github-app-preangel.git",
"homepage": "https://github.com/preangel/github-app-preangel",
"bugs": "https://github.com/preangel/github-app-preangel/issues",
"keywords": [
"probot",
"github",
"preangel",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --ignore lib --exec \"npm start\"",
"start": "npm run build && probot run ./lib/index.js",
"lint": "npm run lint:es && npm run lint:ts",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint --ignore-pattern tests/fixtures/ '{bin,examples,scripts,src,tests}/**/*.ts'",
"test": "npm run lint && jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@chatie/eslint-config": "^0.8.1",
"file-box": "^0.8.27",
"probot": "^9.5.3"
},
"devDependencies": {
"@chatie/git-scripts": "^0.2.5",
"@types/jest": "^24.0.19",
"@types/nock": "^11.1.0",
"@types/node": "^13.1.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^24.9.0",
"nock": "^11.4.0",
"nodemon": "^2.0.0",
"smee-client": "^1.1.0",
"standard": "^14.3.1",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}