-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.18 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
{
"author": {
"name": "Stéphane GUILLY",
"email": "[email protected]"
},
"name": "mqtt-influxdb",
"description": "Simple bridge to store MQTT time event to a INFLUXDB database ",
"version": "0.1.2",
"license": "LGPLv2",
"keywords": [
"mqtt",
"influxdb"
],
"repository": {
"type": "git",
"url": "https://github.com/sguilly/mqtt-influxdb.git"
},
"main": "index.js",
"files": [
"lib"
],
"devDependencies": {
"chai": "^3.0.0",
"expect.js": "^0.3.1",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.13.0",
"grunt-mocha-istanbul": "^2.4.0",
"istanbul": "^0.3.16",
"jshint-stylish": "^2.0.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.2.5",
"mosca": "^0.30.3",
"requirejs": "^2.1.18",
"should": "^7.0.1",
"sinon": "^1.15.3",
"time-grunt": "^1.2.1",
"bunyan": "^1.4.0",
"bunyan-prettystream": "^0.1.3",
"grunt": "^0.4.5"
},
"scripts": {
"test": "grunt"
},
"preferGlobal": "true",
"dependencies": {
"influx": "^3.4.0",
"mqtt": "^1.3.1",
"underscore": "^1.8.3"
}
}