forked from SignalK/signalk-autopilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "@signalk/signalk-autopilot",
"version": "1.4.0",
"description": "Plugin that controls an autopilot",
"main": "index.js",
"scripts": {
"test": "$NODE $npm_package_main",
"create-release": "github-create-release --owner signalk --repository signalk-autopilot",
"release": "git tag -d v$npm_package_version; git tag v$npm_package_version && git push --tags && git push && npm run create-release",
"start": "webpack serve --config webpack.dev.config.js",
"build": "webpack --config webpack.prod.config.js --progress",
"prepublishOnly": "npm run build"
},
"keywords": [
"signalk-node-server-plugin",
"signalk-webapp"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@signalk/github-create-release": "^1.0.1",
"copy-webpack-plugin": "^11.0.0",
"html-minimizer-webpack-plugin": "^4.4.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/signalk-autopilot"
},
"signalk": {
"appIcon": "./appIcon-72x72.png",
"displayName": "Signal K autopilot"
}
}