forked from joeyguerra/hubot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "hubot",
"version": "1.0.0",
"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": {
"@rocket.chat/sdk": "^0.2.9-2",
"@slack/client": "^5.0.1",
"cline": "^0.8.2",
"connect-multiparty": "^2.1.1",
"express": "^4.16.3",
"optparse": "1.0.4"
},
"devDependencies": {
"chai": "~2.1.0",
"coveralls": "^3.0.2",
"is-circular": "^1.0.2",
"mocha": "^9.2.2",
"mockery": "^1.4.0",
"nyc": "^15.1.0",
"semantic-release": "^19.0.2",
"sinon": "~1.17.0",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": "> 16.0.0",
"npm": "> 7.0.0"
},
"main": "./index",
"bin": {
"hubot": "./bin/hubot"
},
"scripts": {
"ci": "node version",
"start": "bin/hubot",
"local": "env $(cat .env | xargs) bin/hubot",
"test": "nyc --reporter=html --reporter=text mocha",
"test:one": "mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:smoke": "node src/**/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}