forked from node-influx/node-influx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 907 Bytes
/
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
{
"name": "influx",
"version": "4.1.0",
"description": "InfluxDB Client",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "./node_modules/.bin/mocha -R spec",
"travis-test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/node-influx/node-influx.git"
},
"keywords": [
"influx",
"influxdb",
"time",
"series",
"client",
"db"
],
"author": "Ben Evans <[email protected]> (http://bensbit.co.uk)",
"contributors": [
"Steffen Konerow <[email protected]> (http://www.nrg-media.de)"
],
"license": "MIT",
"dependencies": {
"lodash": "^3.10.0",
"request": "2.x"
},
"devDependencies": {
"coveralls": "^2.11.1",
"istanbul": "^0.3.2",
"mocha": "2.2.x",
"standard": "4.5.x"
}
}