29 lines
848 B
JSON
29 lines
848 B
JSON
{
|
|
"name": "service-core",
|
|
"version": "1.0.0",
|
|
"description": "Core boiler plate code to install node server as windows service",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "nodemon --watch dev/api --watch core --watch runner.mjs --watch db.mjs --watch log.mjs runner.mjs | bunyan",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/TheThing/service-core.git"
|
|
},
|
|
"author": "Jonatan Nilsson",
|
|
"license": "WTFPL",
|
|
"bugs": {
|
|
"url": "https://github.com/TheThing/service-core/issues"
|
|
},
|
|
"homepage": "https://github.com/TheThing/service-core#readme",
|
|
"dependencies": {
|
|
"bunyan-lite": "^1.0.1",
|
|
"lodash": "^4.17.20",
|
|
"lowdb": "^1.0.0",
|
|
"node-windows": "^1.0.0-beta.5"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.4"
|
|
}
|
|
}
|