-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "@signalk/udp-nmea-plugin",
"version": "2.0.0",
"description": "UDP NMEA0183 Sender",
"main": "dist/index.js",
"keywords": [
"signalk-node-server-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/SignalK/udp-nmea-plugin.git"
},
"bugs": {
"url": "https://github.com/SignalK/udp-nmea-plugin/issues"
},
"author": "Teppo Kurki <[email protected]> (https://github.com/tkurki)",
"license": "Apache-2.0",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"dependencies": {
"netmask": "^2.0.1"
},
"devDependencies": {
"@signalk/server-api": "^2.1.0",
"@types/express": "^4.17.17",
"@types/netmask": "^2.0.2",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}