-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "signalk-anchoralarm-plugin",
"version": "1.16.0",
"description": "Plugin that checks the vessel position to see if there's anchor drift",
"main": "index.js",
"scripts": {
"test": "$NODE $npm_package_main",
"create-release": "github-create-release --owner sbender9 --repository signalk-anchoralarm-plugin",
"release": "git tag -d v$npm_package_version; git tag v$npm_package_version && git push --tags && git push && npm run create-release",
"prettier": "prettier -w index.js",
"lint": "eslint -c .eslintrc.js --ext .ts --ext .js --fix index.js",
"format": "npm run prettier && npm run lint"
},
"keywords": [
"signalk-node-server-plugin",
"signalk-webapp"
],
"signalk-plugin-enabled-by-default": false,
"signalk": {
"appIcon": "images/anchoralarm.png",
"displayName": "Anchor Alarm"
},
"author": {
"name": "Scott Bender",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"baconjs": "^0.7.88",
"geolib": "^3.3.3",
"lodash": "^4.17.4"
},
"devDependencies": {
"@signalk/github-create-release": "^1.0.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.31.8",
"prettier": "^2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sbender9/signalk-anchoralarm-plugin"
}
}