forked from andrewlock/auto-assign-issues
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "auto-assign-issues",
"version": "1.0.0",
"description": "An app to auto-assign any issues raised in a repository to specific users",
"author": "Andrew Lock <[email protected]>",
"license": "ISC",
"repository": "https://github.com/andrewlock/auto-assign-issues.git",
"homepage": "https://github.com/andrewlock/auto-assign-issues",
"bugs": "https://github.com/andrewlock/auto-assign-issues/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -w -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest",
"coverage": "npm test -- --coverage",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"nock": "^10.0.0",
"@types/nock": "^9.3.0",
"probot": "^7.2.0"
},
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/node": "^10.5.2",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^23.4.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3",
"ts-jest": "^23.0.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^18.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
}
}