forked from stephenyeargin/hubot-grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "hubot-grafana",
"description": "Query Grafana dashboards",
"version": "1.6.0",
"author": "Stephen Yeargin <[email protected]>",
"license": "MIT",
"keywords": "hubot, hubot-scripts, grafana, graphs",
"repository": {
"type": "git",
"url": "git://github.com/stephenyeargin/hubot-grafana.git"
},
"bugs": {
"url": "https://github.com/stephenyeargin/hubot-grafana/issues"
},
"dependencies": {
"knox": "^0.9.2",
"request": "^2.58.0"
},
"peerDependencies": {
"hubot": "2.x"
},
"devDependencies": {
"blanket": "^1.2.1",
"chai": "^2.1.1",
"coffee-script": "1.10.0",
"coveralls": "^2.11.6",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-watch": "~0.6.1",
"grunt-mocha-test": "~0.12.7",
"grunt-release": "~0.11.0",
"hubot": "2.x",
"hubot-test-helper": "0.0.6",
"husky": "^0.13.3",
"matchdep": "~0.3.0",
"mocha": "^2.1.0",
"mocha-lcov-reporter": "^1.0.0",
"nock": "^2.3.0",
"require-dir": "^0.3.0",
"sinon": "^1.13.0",
"sinon-chai": "^2.7.0",
"travis-cov": "^0.2.5"
},
"config": {
"blanket": {
"pattern": "src",
"data-cover-never": "node_modules",
"loader": "./node-loaders/coffee-script"
}
},
"main": "index.coffee",
"scripts": {
"test": "grunt test",
"precommit": "npm test",
"prepush": "npm test"
}
}