-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "signalk-to-influxdb2",
"version": "1.8.0",
"description": "Signal K to InfluxDb 2",
"main": "index.js",
"keywords": [
"signalk-node-server-plugin"
],
"author": "Teppo Kurki <[email protected]>",
"repository": "https://github.com/tkurki/signalk-to-influxdb2",
"scripts": {
"test": "docker compose up -d && npm run build && npm run mocha",
"mocha": "mocha --require ts-node/register --extensions ts src/*.test.ts --timeout 5000 --exit",
"lint:only": "eslint src --ext .ts",
"prettier": "prettier -w src/",
"lint": "eslint -c .eslintrc.js --ext .ts --ext .js --fix src/",
"format": "npm run prettier && npm run lint",
"ci-lint": "eslint -c .eslintrc.js --ext .ts --ext .js src/ && prettier --check src/",
"generate-schema": "./generate-schema >dist/PluginConfig.json",
"build": "tsc && npm run generate-schema",
"prepublishOnly": "npm install && npm run build"
},
"license": "Apache-2.0",
"devDependencies": {
"@signalk/server-api": "^2.3.0",
"@types/chai": "^4.3.3",
"@types/express": "^4.17.17",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.6",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"async-await-retry": "^2.0.0",
"chai": "^4.3.6",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"json-schema-ref-parser": "^9.0.9",
"mocha": "^10.0.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"typescript-json-schema": "^0.65.1",
"wait-on": "^6.0.1"
},
"dependencies": {
"@chacal/signalk-ts": "^0.5.0",
"@influxdata/influxdb-client": "^1.28.0",
"@influxdata/influxdb-client-apis": "^1.29.0",
"@js-joda/core": "^5.3.0",
"@js-joda/timezone": "^2.12.1",
"@signalk/freeboard-sk": "^2.4.0",
"@signalk/signalk-schema": "^1.6.0",
"influx": "^5.9.3",
"s2-geometry": "^1.2.10"
},
"peerDependencies": {
"express": "^4.18.2"
}
}