26 lines
732 B
JSON
26 lines
732 B
JSON
{
|
|
"name": "aprsnotifyjs",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"private": true,
|
|
"dependencies": {
|
|
"aprs-parser": "^1.0.4",
|
|
"ol": "^5.0.3",
|
|
"ws": "^5.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"parcel": "^1.9.7"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"monkeyPatch": "sed -i '8s| APRSIS| //APRSIS|' node_modules/aprs-parser/lib/index.js",
|
|
"serve": "node src/server.js",
|
|
"prestart": "npm run monkeyPatch",
|
|
"start": "node_modules/.bin/parcel src/index.html",
|
|
"prebuild": "npm run monkeyPatch",
|
|
"build": "node_modules/.bin/parcel build --public-url ./ src/index.html"
|
|
},
|
|
"author": "Adam Goldsmith <contact@adamgoldsmith.name>",
|
|
"license": "ISC"
|
|
}
|