-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
86 lines (86 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "hubot-stackstorm",
"description": "A hubot plugin for integrating with StackStorm event-driven infrastructure automation platform.",
"version": "0.12.0",
"author": "StackStorm, Inc. <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"hubot",
"hubot-scripts",
"stackstorm",
"st2",
"automation",
"devops",
"chatops"
],
"repository": {
"type": "git",
"url": "git://github.com/StackStorm/hubot-stackstorm.git"
},
"bugs": {
"url": "https://github.com/StackStorm/hubot-stackstorm/issues"
},
"dependencies": {
"cli-table": "<=1.0.0",
"coffee-register": "1.0.0",
"coffee-script": "1.12.7",
"coffeescript": "1.12.7",
"lodash": "^4.17.21",
"rsvp": "^4.8.4",
"st2client": "^1.2.6",
"truncate": "^2.0.1",
"uuid": "^3.0.0"
},
"peerDependencies": {
"hubot": "3.x"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"eslint": "^5.16.0",
"eslint-plugin-notice": "0.7.8",
"gulp": "^3.9.1",
"gulp-eslint": "^5.0.0",
"gulp-load-plugins": "1.5.0",
"gulp-mocha": "^6.0.0",
"gulp-plumber": "^1.2.0",
"hubot": "^3.1.1",
"hubot-help": "0.2.2",
"hubot-mock-adapter": "^1.1.1",
"log": "1.4.0",
"mocked-env": "^1.3.1",
"mversion": "^1.13.0",
"natives": "^1.1.6",
"nock": "^10.0.0",
"nyc": "^13.0.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0"
},
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"test": "nyc mocha --exit"
},
"nyc": {
"temp-directory": "./coverage/.nyc_output",
"include": [
"src"
],
"exclude": [
"test"
],
"reporter": [
"html",
"text"
]
},
"engines": {
"node": ">=8.0 <11.0"
},
"files": [
"/index.js",
"/src"
]
}