-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "cpsbot",
"version": "0.0.0",
"private": true,
"author": "akameco <[email protected]>",
"description": "bot for cpslab",
"engines": {
"node": "8"
},
"scripts": {
"test": "eslint scripts",
"lint": "eslint scripts --fix"
},
"dependencies": {
"@slack/client": "^4.8.0",
"adventar": "^0.2.1",
"cheerio": "^1.0.0-rc.1",
"eastasianwidth": "^0.1.1",
"got": "^7.0.0",
"heroku-self-ping": "^1.1.3",
"hubot": "^3.3.2",
"hubot-github-repo-event-notifier": "^1.7.0",
"hubot-help": "^0.2.0",
"hubot-redis-brain": "0.0.3",
"hubot-scripts": "^2.17.2",
"hubot-slack": "^4.3.4",
"moment-timezone": "^0.5.21",
"request": "^2.88.0",
"sharp": "^0.21.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"pre-commit": "^1.2.2",
"prettier": "^1.17.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint scripts --fix",
"git add"
]
}
}