50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "service-core",
|
|
"version": "2.0.2",
|
|
"description": "Core boiler plate code to install node server as windows service",
|
|
"main": "lib.mjs",
|
|
"scripts": {
|
|
"dev": "nodemon --watch dev/api --watch core --watch runner.mjs --watch db.mjs --watch log.mjs runner.mjs | bunyan",
|
|
"test": "eltro \"test/**/*.test.mjs\" -r dot",
|
|
"test:spec": "eltro \"test/**/*.test.mjs\" -r list",
|
|
"test:watch": "npm-watch test"
|
|
},
|
|
"watch": {
|
|
"test": {
|
|
"patterns": [
|
|
"{core,test}/*"
|
|
],
|
|
"ignore": [
|
|
"test/testapp",
|
|
"test/testnoexisting"
|
|
],
|
|
"extensions": "js,mjs",
|
|
"quiet": true,
|
|
"inherit": true
|
|
}
|
|
},
|
|
"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",
|
|
"files": [
|
|
"lib.mjs",
|
|
"package.json",
|
|
"README.md",
|
|
"core"
|
|
],
|
|
"dependencies": {
|
|
"bunyan-lite": "^1.0.1",
|
|
"lodash": "^4.17.20",
|
|
"lowdb": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eltro": "^1.3.0"
|
|
}
|
|
}
|