-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "signalk-pmtiles-plugin",
"version": "1.0.0",
"description": "PMTiles chart resource provider plugin for Signal K server",
"main": "plugin/index.js",
"scripts": {
"build": "tsc",
"build-declaration": "tsc --declaration --allowJs false",
"watch": "npm run build -- -w",
"start": "npm run watch",
"prepare": "tsc",
"prettier": "prettier -w src/",
"lint": "eslint -c .eslintrc.js --ext .ts --ext .js --fix src/",
"format": "npm run prettier && npm run lint"
},
"license": "Apache-2.0",
"keywords": [
"signalk",
"signalk-node-server-plugin",
"signalk-category-chart-plotters",
"chart",
"pmtiles"
],
"author": {
"name": "AdrianP"
},
"dependencies": {
"bluebird": "^3.7.2",
"lodash": "^4.17.11",
"pmtiles": "^2.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/panaaj/signalk-pmtiles-plugin"
},
"devDependencies": {
"@signalk/server-api": "^2.0.0",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4",
"typescript": "^4.5.4"
}
}