forked from SignalK/signalk-derived-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "signalk-derived-data",
"version": "1.33.0",
"description": "Plugin that derives signalk data from other signalk data",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"format": "prettier-standard calcs/*.js index.js",
"test": "mocha"
},
"keywords": [
"signalk-node-server-plugin"
],
"author": {
"name": "Scott Bender",
"email": "[email protected]"
},
"contributors": [
{
"name": "Joachim Bakke"
}
],
"license": "ISC",
"lint-staged": {
"linters": {
"calcs/*.js": [
"prettier-standard",
"git add"
],
"index.js": [
"prettier-standard",
"git add"
]
}
},
"dependencies": {
"@panaaj/sk-geodesy": "^1.0.2",
"baconjs": "^0.7.88",
"cubic-spline": "^1.0.4",
"geolib": "^3.3.1",
"geolocation-utils": "^1.2.3",
"lodash": "^4.17.4",
"magvar": "^1.0.3",
"suncalc": "^1.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-json-equal": "0.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha": "^8.2.1",
"prettier-standard": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sbender9/signalk-derived-data"
}
}