81 lines
2.9 KiB
JSON
81 lines
2.9 KiB
JSON
{
|
|
"name": "influx",
|
|
"version": "5.6.3",
|
|
"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": "prettier -c .",
|
|
"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 <ben@bensbit.co.uk> (http://bensbit.co.uk)",
|
|
"Connor Peet <connor@peet.io>",
|
|
"Steffen Konerow <steffen@nrg-media.de> (http://www.nrg-media.de)",
|
|
"Timm Murray <tmurray@wumpus-cave.net> (http://wumpus-cave.net)"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.11",
|
|
"@types/freeport": "1.0.21",
|
|
"@types/mocha": "^8.0.0",
|
|
"@types/node": "^14.0.24",
|
|
"@types/sinon": "^9.0.4",
|
|
"@types/sinon-chai": "^3.2.4",
|
|
"awesome-typescript-loader": "5.2.1",
|
|
"chai": "4.2.0",
|
|
"coveralls": "^3.1.0",
|
|
"esdoc": "1.1.0",
|
|
"esdoc-standard-plugin": "1.0.0",
|
|
"freeport": "1.0.5",
|
|
"istanbul": "0.4.5",
|
|
"json-loader": "0.5.7",
|
|
"karma": "^5.1.0",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-mocha-reporter": "2.2.5",
|
|
"karma-sauce-launcher": "^4.1.4",
|
|
"karma-sourcemap-loader": "0.3.7",
|
|
"karma-webpack": "4.0.2",
|
|
"lodash": "4.17.19",
|
|
"mocha": "^8.0.1",
|
|
"node-fetch": "2.6.0",
|
|
"npm-run-all": "4.1.5",
|
|
"open-cli": "^6.0.1",
|
|
"prettier": "^2.0.5",
|
|
"semantic-release": "^17.1.1",
|
|
"sinon": "^9.0.2",
|
|
"sinon-chai": "^3.5.0",
|
|
"stream-http": "github:node-influx/stream-http",
|
|
"ts-node": "^8.10.2",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "^4.43.0"
|
|
},
|
|
"dependencies": {}
|
|
}
|