forked from hubotio/hubot-diagnostics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "hubot-diagnostics",
"description": "hubot scripts for diagnosing hubot",
"version": "0.0.0-development",
"publishConfig": {
"tag": "next"
},
"author": "Josh Nichols <[email protected]>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts"
],
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot-diagnostics.git"
},
"bugs": {
"url": "https://github.com/hubotio/hubot-diagnostics/issues"
},
"engines": {
"node": "> 4.0.0"
},
"dependencies": {},
"peerDependencies": {
"hubot": ">=2 <10 || 0.0.0-development"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"hubot": "^3.0.0",
"hubot-mock-adapter-v3": "^1.0.0",
"matchdep": "^0.1.2",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"sinon": "^2.3.6",
"sinon-chai": "^2.11.0",
"standard": "^10.0.2",
"semantic-release": "^6.3.6"
},
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}