Merge pull request #186 from ciaranj/add_windows_service_support

Adds Windows Service support
This commit is contained in:
Daniel Schauenberg 2012-11-03 14:31:52 -07:00
Родитель e37c952619 6009b6c87c
Коммит edbd13524c
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -3,7 +3,10 @@
"description": "A simple, lightweight network daemon to collect metrics over UDP",
"author": "Etsy",
"scripts": {
"test": "./run_tests.sh"
"test": "./run_tests.sh",
"start": "node stats.js config.js",
"install-windows-service": "node_modules\\.bin\\winser -i",
"uninstall-windows-service": "node_modules\\.bin\\winser -r"
},
"repository": {
"type": "git",
@ -19,7 +22,8 @@
"temp": "0.4.x"
},
"optionalDependencies": {
"node-syslog":"1.1.3"
"node-syslog":"1.1.3",
"winser": "=0.0.11"
},
"engine": {
"node" : ">=0.4"