-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.21 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
{
"name": "close-issue-app",
"version": "1.0.0",
"description": "",
"author": "helloqiu <[email protected]>",
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/offu/close-issue-app",
"scripts": {
"dev": "nodemon -e ts --exec \"tsc && npm run start\"",
"build": "rimraf dist && tsc",
"start": "probot run ./dist/robot.js",
"test": "jest --coverage",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"js-yaml": "3.14.1",
"probot": "9.15.1"
},
"devDependencies": {
"@types/bunyan": "1.8.11",
"@types/jest": "26.0.24",
"@types/js-yaml": "3.12.10",
"@types/node": "10.17.60",
"jest": "26.6.3",
"nodemon": "2.0.22",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"typescript": "4.3.5"
},
"engines": {
"node": ">= 10"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"collectCoverageFrom": [
"<rootDir>/src/*.ts"
]
}
}