winsc
Version:
Windows Service Controller for NodeJs. Install/uninstall, start/stop and verify existence of a Windows service. Print out the current status of the service and list all services available on local machine.
43 lines (42 loc) • 973 B
JSON
{
"name": "winsc",
"version": "1.0.4",
"description": "Windows Service Controller for NodeJs. Install/uninstall, start/stop and verify existence of a Windows service. Print out the current status of the service and list all services available on local machine.",
"main": "./src/winsc.js",
"scripts": {
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maurobussini/winsc.git"
},
"keywords": [
"windows",
"service",
"controller",
"sc.exe",
"install",
"uninstall",
"stop",
"start",
"status"
],
"author": "maurobussini",
"license": "MIT",
"bugs": {
"url": "https://github.com/maurobussini/winsc/issues"
},
"ava": {
"files": [
"test/**/*"
],
"verbose": true
},
"homepage": "https://github.com/maurobussini/winsc#readme",
"devDependencies": {
"ava": "^3.10.1",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^9.0.2"
}
}