-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1014 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1014 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
44
45
46
{
"name": "windows-service-controller",
"version": "0.1.5",
"description": "Windows service controller.",
"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": "^1.0.0",
"chai": "^4.4.1",
"gulp": "~4.0.2",
"gulp-jshint": "~2.1.0",
"gulp-mocha": "~10.0.0"
},
"dependencies": {
"escape-string-regexp": "^4.0.0",
"lodash": "^4.17.21",
"q": "^1.5.1",
"underscore.string": "^3.3.6"
},
"volta": {
"node": "20.11.0"
}
}