-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.59 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
{
"name": "influx",
"version": "5.0.4",
"description": "InfluxDB Client",
"main": "./lib/src/index.js",
"typings": "./lib/src/index",
"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"
},
"repository": {
"type": "git",
"url": "git://github.com/node-influx/node-influx.git"
},
"keywords": [
"influx",
"influxdb",
"time",
"series",
"client",
"db"
],
"contributors": [
"Ben Evans <[email protected]> (http://bensbit.co.uk)",
"Connor Peet <[email protected]>",
"Steffen Konerow <[email protected]> (http://www.nrg-media.de)"
],
"license": "MIT",
"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": "^2.6.1",
"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"
}
}