This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
75 lines (75 loc) · 1.89 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
70
71
72
73
74
75
{
"name": "pr-triage",
"version": "0.0.0-development",
"description": "GitHub App built with Probot that support pull request workflow",
"main": "index.js",
"scripts": {
"start": "probot run ./index.js",
"start:dev": "nodemon --exec \"npm start\"",
"commit": "git-cz",
"lint": "prettier --write {index,lib/**/*,test/pr-triage.test}.js",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"coverage": "npm test -- --coverage",
"postcoverage": "codecov",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/sotayamashita/sidekick.git"
},
"keywords": [
"probot",
"probot-app",
"probot-plugin",
"github-app",
"pull request",
"label",
"marge request"
],
"author": "Sam Yamashita",
"license": "Apache-2.0",
"dependencies": {
"@sentry/node": "^5.22.3",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"probot": "^10.1.3",
"snyk": "^1.231.0"
},
"devDependencies": {
"codecov": "^3.4.0",
"commitizen": "^4.0.1",
"cz-conventional-changelog": "^3.0.2",
"husky": "^4.0.1",
"jest": "^26.0.1",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^10.0.7",
"nodemon": "^2.0.1",
"prettier": "2.1.1",
"probot-config": "^1.0.0",
"semantic-release": "^17.0.2",
"smee-client": "^1.1.0",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{index,lib/**/*}.js": [
"prettier --write {index,lib/**/*,test/pr-triage.test}.js",
"git add"
]
},
"snyk": true,
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm test && lint-staged",
"pre-push": "npm test"
}
}
}