-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "chatops",
"version": "1.0.0",
"private": true,
"author": "Puncoz Nepal <info@puncoz.com>",
"keywords": [
"chatops",
"hubot",
"typescript"
],
"description": "A simple helpful robot for your Company",
"repository": {
"type": "git",
"url": "git://github.com/puncoz/testbot-hubot-typescript.git"
},
"scripts": {
"start": "yarn lint && yarn build && ./start",
"start:dev": "./start",
"start:watch": "nodemon",
"build:watch": "tsc --w",
"build": "yarn clean && tsc",
"clean": "rimraf build",
"lint": "tslint -p . -c tslint.json",
"prettier": "prettier --write src/**/*.ts"
},
"dependencies": {
"@slack/client": "^4.8.0",
"@types/hubot": "^2.19.2",
"hubot": "^3.1.1",
"hubot-diagnostics": "^1.0.0",
"hubot-google-translate": "^0.2.1",
"hubot-help": "^1.0.1",
"hubot-scripts": "^2.17.2",
"hubot-slack": "^4.6.0"
},
"devDependencies": {
"@types/node": "^10.12.18",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"engines": {
"node": ">10.0.0"
},
"files": [
"build"
]
}