-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "influxdb-lite",
"version": "1.0.0",
"description": "A light-weight library to write data to InfluxDB",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"bin": {
"influxdb-lite": "src/cli.js"
},
"files": [
"/src"
],
"scripts": {
"test": "uvu tests",
"coverage": "c8 --include=src npm test && c8 report --reporter=text-lcov > coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/test-results-reporter/influxdb-lite.git"
},
"keywords": [
"influx",
"influxdb",
"v1",
"cli"
],
"author": "Anudeep <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/test-results-reporter/influxdb-lite/issues"
},
"homepage": "https://github.com/test-results-reporter/influxdb-lite#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"phin-retry": "^1.0.3",
"sade": "^1.8.1"
},
"devDependencies": {
"c8": "^7.3.0",
"pactum": "^3.1.9",
"uvu": "^0.3.3"
}
}