forked from kentaro-m/auto-assign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.72 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
67
68
69
{
"name": "auto-assign",
"version": "1.0.0",
"description": "A Probot app that adds reviewers to pull requests when pull requests are opened.",
"author": "Kentaro Matsushita <[email protected]>",
"license": "ISC",
"repository": "https://github.com/kentaro-m/auto-assign.git",
"homepage": "https://github.com/kentaro-m/auto-assign",
"bugs": "https://github.com/kentaro-m/auto-assign/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "npm run build && probot run ./lib/index.js",
"lint": "eslint src/**/*.ts",
"test": "jest",
"precommit": "lint-staged",
"coverage": "jest --coverage",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"src/**/*.ts": [
"npm run lint -- --fix",
"git add"
]
}
},
"dependencies": {
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"lodash": "^4.17.11",
"probot": "^7.5.0",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/jest": "^23.3.0",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.5",
"nodemon": "^1.17.2",
"prettier": "^1.17.0",
"smee-client": "^1.0.2",
"ts-jest": "^24.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
}
}