forked from node-influx/node-influx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.22 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
{
"name": "influx",
"version": "0.0.0-development",
"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",
"prepare": "npm run clean && tsc -d",
"fmt": "prettier --single-quote --trailing-comma all --print-width 100 --write \"{src,test,examples}/**/*.ts\" && npm run test:lint -- --fix",
"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 && open-cli coverage/lcov-report/index.html",
"test:integrate": "mocha --require ts-node/register --timeout 20000 test/integrate/*.test.ts",
"test:lint": "eslint . --ext .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 --require ts-node/register test/unit/*.test.ts",
"test:watch": "mocha -R min --watch --require ts-node/register test/unit/*.test.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://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": "4.2.0",
"@types/freeport": "1.0.21",
"@types/mocha": "5.2.7",
"@types/node": "12.7.1",
"@types/sinon": "7.0.13",
"@types/sinon-chai": "3.2.3",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"awesome-typescript-loader": "5.2.1",
"chai": "4.2.0",
"coveralls": "3.0.6",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "5.16.0",
"eslint-config-xo": "0.26.0",
"eslint-config-xo-typescript": "0.14.0",
"freeport": "1.0.5",
"istanbul": "0.4.5",
"json-loader": "0.5.7",
"karma": "4.2.0",
"karma-chrome-launcher": "3.0.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sauce-launcher": "2.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"lodash": "4.17.15",
"mocha": "6.2.0",
"node-fetch": "2.6.0",
"npm-run-all": "4.1.5",
"open-cli": "5.0.0",
"prettier": "1.18.2",
"semantic-release": "15.13.16",
"sinon": "7.4.1",
"sinon-chai": "3.3.0",
"stream-http": "github:node-influx/stream-http",
"ts-node": "8.3.0",
"typescript": "3.5.3",
"webpack": "4.39.2",
"semantic-release": "15.13.19"
},
"eslintConfig": {
"extends": [
"xo",
"xo-typescript"
],
"rules": {
"@typescript-eslint/interface-name-prefix": false,
"@typescript-eslint/camelcase": "warn"
}
}
}