-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.61 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"_from": "influx@^5.0.0-alpha.4",
"_id": "[email protected]",
"_inBundle": false,
"_integrity": "sha1-NeZfa/E8uqF2MQi1WWqAanJ6Upo=",
"_location": "/influx",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "influx@^5.0.0-alpha.4",
"name": "influx",
"escapedName": "influx",
"rawSpec": "^5.0.0-alpha.4",
"saveSpec": null,
"fetchSpec": "^5.0.0-alpha.4"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/influx/-/influx-5.0.7.tgz",
"_shasum": "35e65f6bf13cbaa1763108b5596a806a727a529a",
"_spec": "influx@^5.0.0-alpha.4",
"_where": "/home/user/Documents/projects/hollaex-server",
"bugs": {
"url": "https://github.com/node-influx/node-influx/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Ben Evans",
"email": "[email protected]",
"url": "http://bensbit.co.uk"
},
{
"name": "Connor Peet",
"email": "[email protected]"
},
{
"name": "Steffen Konerow",
"email": "[email protected]",
"url": "http://www.nrg-media.de"
}
],
"deprecated": false,
"description": "InfluxDB Client",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"@types/sinon": "^1.16.31",
"@types/sinon-chai": "^2.7.27",
"awesome-typescript-loader": "^3.0.8",
"chai": "^3.5.0",
"coveralls": "^2.11.1",
"esdoc": "^0.4.8",
"istanbul": "^0.4.3",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"lodash": "^4.16.2",
"mocha": "^3.1.0",
"node-fetch": "^1.6.3",
"npm-run-all": "^4.0.2",
"opn-cli": "^3.1.0",
"sinon": "^2.0.0-pre.3",
"sinon-chai": "^2.8.0",
"stream-http": "github:node-influx/stream-http",
"ts-node": "^2.1.0",
"tslint": "^4.5.1",
"tslint-microsoft-contrib": "4.0.0",
"typescript": "^2.2.1",
"webpack": "^2.2.1"
},
"homepage": "https://github.com/node-influx/node-influx#readme",
"keywords": [
"influx",
"influxdb",
"time",
"series",
"client",
"db"
],
"license": "MIT",
"main": "./lib/src/index.js",
"name": "influx",
"repository": {
"type": "git",
"url": "git://github.com/node-influx/node-influx.git"
},
"scripts": {
"build:dist": "npm run clean && tsc && cp -R test/fixture lib/test",
"build:doc": "npm run clean && tsc -m es2015 -t es6 --moduleResolution node && esdoc -c esdoc.json",
"clean": "rm -rf coverage doc lib",
"prepublish": "npm run clean && tsc -d",
"test": "npm-run-all --parallel test:lint test:unit test:integrate",
"test:browser": "karma start test/karma.conf.js",
"test:cover": "npm run build:dist && istanbul cover _mocha -- lib/test/unit/*.test.js && opn coverage/lcov-report/index.html",
"test:integrate": "mocha --compilers ts:ts-node/register --timeout 20000 test/integrate/*.test.ts",
"test:lint": "tslint --type-check --project tsconfig.json '{src,test}/**/*.ts'",
"test:sauce": "SAUCE=1 karma start test/karma.conf.js",
"test:travis": "npm-run-all clean test:lint test:sauce test:integrate build:dist && istanbul cover _mocha --report lcovonly -- lib/test/unit/*.test.js",
"test:unit": "mocha --compilers ts:ts-node/register test/unit/*.test.ts",
"test:watch": "mocha -R min --watch --compilers ts:ts-node/register test/unit/*.test.ts"
},
"typings": "./lib/src/index",
"version": "5.0.7"
}