forked from hubotio/hubot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.3 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": "hubot",
"version": "0.0.0-development",
"author": "hubot",
"keywords": [
"github",
"hubot",
"campfire",
"bot"
],
"description": "A simple helpful robot for your Company",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot.git"
},
"dependencies": {
"async": ">=0.1.0 <1.0.0",
"chalk": "^1.0.0",
"cline": "^0.8.2",
"coffeescript": "1.6.3",
"connect-multiparty": "^2.1.1",
"express": "^4.16.3",
"log": "1.4.0",
"optparse": "1.0.4",
"scoped-http-client": "0.11.0"
},
"devDependencies": {
"chai": "~2.1.0",
"coveralls": "^3.0.2",
"is-circular": "^1.0.2",
"mocha": "^5.2.0",
"mockery": "^1.4.0",
"nyc": "^13.0.0",
"semantic-release": "^15.9.3",
"sinon": "~1.17.0",
"sinon-chai": "^2.8.0",
"standard": "^10.0.2"
},
"engines": {
"node": "> 4.0.0",
"npm": "> 2.0.0"
},
"main": "./index",
"bin": {
"hubot": "./bin/hubot"
},
"scripts": {
"start": "bin/hubot",
"pretest": "standard",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:smoke": "node src/**/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}