-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "signalk-to-mongodb",
"version": "2.2.1",
"description": "SignalK plugin to store data to cloud hosted MongoDB URI. It provides an easy integration of SignalK server with MongoDB to log and store boat data in real-time.",
"main": "index.js",
"scripts": {
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/LinnJS/signalk-to-mongodb.git"
},
"keywords": [
"signalk-node-server-plugin",
"signalk-category-utility",
"signalk-category-cloud",
"signalk-category-nmea-2000",
"signalk",
"mongodb",
"plugin",
"data-storage",
"cloud-storage",
"nmea-2000",
"marine",
"boating",
"yachting",
"sailing"
],
"author": "LinnJS <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/LinnJS/signalk-to-mongodb#readme",
"bugs": {
"url": "https://github.com/LinnJS/signalk-to-mongodb/issues"
},
"dependencies": {
"mongodb": "^6.3.0"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
}
}