service-core/package.json

55 lines
1.4 KiB
JSON
Raw Normal View History

2020-09-01 17:31:38 +00:00
{
"name": "service-core",
"version": "2.0.2",
2020-09-01 17:31:38 +00:00
"description": "Core boiler plate code to install node server as windows service",
2020-09-09 15:41:05 +00:00
"main": "lib.mjs",
2020-09-01 17:31:38 +00:00
"scripts": {
2020-09-07 00:47:53 +00:00
"dev": "nodemon --watch dev/api --watch core --watch runner.mjs --watch db.mjs --watch log.mjs runner.mjs | bunyan",
2022-01-24 06:59:58 +00:00
"test": "eltro \"test/**/*.test.mjs\" -r dot",
"test:integration": "eltro \"test/**/*.test.integration.mjs\" -r list",
"test:test": "eltro \"test/application.test.integration.mjs\" -r list",
"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
}
2020-09-01 17:31:38 +00:00
},
"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": [
"index.mjs",
"cli.mjs",
"package.json",
"README.md",
"core",
"bin"
],
2020-09-01 17:31:38 +00:00
"dependencies": {
"bunyan-lite": "^1.0.1",
"lodash": "^4.17.20",
"lowdb": "^3.0.0"
2020-09-01 17:31:38 +00:00
},
"devDependencies": {
2022-01-11 16:51:15 +00:00
"eltro": "^1.3.0"
2020-09-01 17:31:38 +00:00
}
}