-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "probot-pr-milestone",
"version": "1.0.1",
"description": "Check that all the pull requests are tagged with a GitHub milestone",
"author": "cchantep (https://github.com/cchantep)",
"license": "ISC",
"repository": "https://github.com/zengularity/probot-pr-milestone.git",
"homepage": "https://github.com/zengularity/probot-pr-milestone",
"bugs": "https://github.com/zengularity/probot-pr-milestone/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"prettier": "prettier \"{src,test}/*.{js,json,md,prettierrc,ts,tsx,yml}\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"start": "probot run ./lib/index.js",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^10.2.0",
"io-ts": "^1.8.5"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^24.0.0",
"nodemon": "^2.0.2",
"smee-client": "^1.0.2",
"nock": "^13.0.4",
"@types/nock": "^11.1.0",
"ts-jest": "^24.0.0",
"jest-junit": "^11.1.0",
"typescript": "^4.0.2",
"typescript-eslint-parser": "^22.0.0",
"prettier": "1.19.1"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"testEnvironment": "node"
}
}