-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "@signalk/course-provider",
"version": "1.1.1",
"description": "Course data provider plugin for SignalK Server.",
"main": "plugin/index.js",
"keywords": [
"signalk-node-server-plugin",
"signalk-category-utility",
"signalk",
"signalk-min-api-version:2"
],
"repository": {
"url": "https://github.com/SignalK/coursedata-provider-plugin",
"type": "git"
},
"author": "AdrianP",
"contributors": [
{
"name": "[email protected]"
}
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"build-declaration": "tsc --declaration --allowJs false",
"watch": "npm run build -- -w",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build -- -w",
"prepublishOnly": "tsc",
"format": "prettier --write src/*"
},
"dependencies": {
"rxjs": "^7.5.2"
},
"devDependencies": {
"@signalk/server-api": "^2.0.0",
"@types/express": "^4.17.8",
"@types/node-fetch": "^2.5.6",
"prettier": "^2.6.0",
"typescript": "^4.5.4"
},
"signalk-plugin-enabled-by-default": true
}