{ "name": "service-core", "version": "3.0.2", "description": "Core boiler plate code to install node server as windows service", "main": "index.mjs", "scripts": { "dev": "nodemon --watch dev/api --watch core --watch runner.mjs --watch db.mjs --watch log.mjs runner.mjs | bunyan", "test": "eltro -t 250 \"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 } }, "bin": { "sccli": "./cli.mjs" }, "repository": { "type": "git", "url": "git+https://git.nfp.is/TheThing/service-core.git" }, "author": "Jonatan Nilsson", "license": "WTFPL", "bugs": { "url": "https://git.nfp.is/TheThing/service-core/issues" }, "homepage": "https://git.nfp.is/TheThing/service-core#readme", "files": [ "index.mjs", "cli.mjs", "package.json", "README.md", "core", "bin" ], "dependencies": { "bunyan-lite": "^1.2.0", "lowdb": "^3.0.0" }, "devDependencies": { "eltro": "^1.3.1" } }