-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "probot-todo",
"version": "1.0.0",
"description": "TODO & FIXME issue reporter",
"author": "freelyformd <[email protected]>",
"license": "ISC",
"repository": "https://github.com/freelyformd/github-todos",
"homepage": "https://github.com/apps/probot-todo",
"bugs": "https://github.com/freelyformd/github-todos/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"build": "tsc",
"patch": "release-it -i patch -n",
"feature": "release-it -i minor -n",
"breaking": "release-it -i major -n",
"start": "npm run build && probot run ./dist/app/main.js",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"esprima-extract-comments": "^1.1.0",
"probot": "^7.0.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.11.3",
"@types/ramda": "^0.25.39",
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"release-it": "^7.6.1",
"smee-client": "^1.0.2",
"ts-jest": "^23.10.2",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node",
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
"src"
]
}
}