-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "@signalk/open-meteo-provider",
"version": "0.1.0",
"description": "Open-Meteo weather 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",
"prepublishOnly": "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-weather"
],
"author": {
"name": "AdrianP"
},
"dependencies": {
"geolib": "^3.3.4",
"ngeohash": "^0.6.3",
"tslib": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/open-meteo-plugin"
},
"devDependencies": {
"@signalk/server-api": "^2.3.0",
"@types/express": "^4.17.17",
"@types/ngeohash": "^0.6.8",
"@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"
}
}