forked from mikeobrien/node-windows-service-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1011 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "windows-service-controller",
"version": "0.1.6",
"description": "Windows service controller.This can now handle non-english locale",
"homepage": "https://github.com/mikeobrien/node-windows-service-controller",
"main": "src/sc.js",
"bugs": {
"url": "https://github.com/mikeobrien/node-windows-service-controller/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mikeobrien/node-windows-service-controller.git"
},
"keywords": [
"sc",
"service",
"windows"
],
"scripts": {
"test": "gulp"
},
"author": "Mike O'Brien",
"license": "MIT",
"readmeFilename": "README.md",
"files": [
"src/*.js",
"README.md",
"LICENSE"
],
"devDependencies": {
"cases": "^0.1.1",
"chai": "~1.10.0",
"gulp": "~3.8.10",
"gulp-jshint": "~1.9.0",
"gulp-mocha": "~1.1.1"
},
"dependencies": {
"escape-string-regexp": "^1.0.2",
"lodash": "^2.4.1",
"q": "^1.1.1",
"underscore.string": "^2.4.0"
}
}