-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.61 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.61 KB
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
68
69
70
{
"name": "git-watchman",
"version": "1.0.0",
"description": "A GitHub Merge Bot",
"author": "Elliott Davis <elliott@excellent.io> (excellent.io)",
"license": "ISC",
"repository": "https://github.com//git-watchman.git",
"homepage": "https://github.com//git-watchman",
"bugs": "https://github.com//git-watchman/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@types/nock": "^9.3.0",
"dotenv": "^7.0.0",
"interval-promise": "^1.3.0",
"jsforce": "^1.9.1",
"nock": "^10.0.0",
"probot": "^7.5.3",
"typed-rest-client": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.7",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"smee-client": "^1.1.0",
"standard": "^12.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"ignore": [
"src/**/*.spec.ts"
],
"exec": "npm run build && npm run start"
}
}