-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.49 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
{
"name": "hubot-oneview",
"description": "Hubot script that interfaces with the Hewlett Packard Enterprise OneView RESTful API",
"version": "0.0.0",
"author": "Hewlett Packard Enterprise <>",
"license": "MIT",
"keywords": ["hubot", "hubot-scripts", "oneview", "hewlett packard enterprise"],
"repository": {
"type": "git",
"url": "git://github.com/HewlettPackard/hpe-oneview-hubot.git"
},
"bugs": {
"url": "https://github.com/HewlettPackard/hpe-oneview-hubot/issues"
},
"dependencies": {
"amqp": "^0.2.7",
"core-util-is": "^1.0.2",
"d3": "^5.9.7",
"fuzzyset.js": "0.0.8",
"https": "^1.0.0",
"hubot-conversation": "^1.1.1",
"hubot-flowdock": ">= 0.0.1",
"jsdom": "^15.1.1",
"compromise": "^11.14.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"svg2png": "^4.1.1"
},
"peerDependencies": {
"hubot": "3.x"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"del": "^5.0.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-task-listing": "^1.1.0",
"hubot": "3.x",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
},
"main": "dist/oneview.js",
"scripts": {
"prepublish": "gulp build",
"test": "nyc --all mocha --recursive test --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage"
},
"nyc": {
"exclude": [
"dist",
"gulpfile.js",
"test"
]
}
}