-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.76 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/charts-plugin",
"version": "3.0.0",
"description": "Signal K plugin to provide chart support 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 build -- -w",
"prepare": "tsc",
"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/",
"test": "mocha",
"deploy": "npm build && npm test && git tag -a v$npm_package_version -m 'Release v$npm_package_version'; git push --tags; npm publish --access public --scope @signalk ."
},
"license": "Apache-2.0",
"keywords": [
"signalk",
"signalk-node-server-plugin",
"nautic",
"chart",
"mbtiles",
"tms"
],
"author": {
"name": "Mikko Vesikkala",
"email": "[email protected]"
},
"dependencies": {
"@mapbox/mbtiles": "^0.12.1",
"@signalk/server-api": "^2.0.0-beta.3",
"baconjs": "1.0.1",
"bluebird": "3.5.1",
"lodash": "^4.17.11",
"xml2js": "0.4.19"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/charts-plugin"
},
"devDependencies": {
"@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",
"body-parser": "1.18.2",
"chai": "4.1.2",
"chai-http": "^4.2.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"express": "4.19.2",
"mocha": "5.0.0",
"prettier": "^2.8.4",
"typescript": "^4.5.4"
}
}