forked from jon-hall/pm2-windows-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 KB
/
package.json
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
47
48
49
{
"name": "pm2-windows-service",
"version": "0.2.0",
"description": "Install PM2 as a service on windows",
"main": "src/index.js",
"bin": {
"pm2-service-install": "bin/pm2-service-install",
"pm2-service-uninstall": "bin/pm2-service-uninstall"
},
"scripts": {
"test": "node test/integration.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jon-hall/pm2-windows-service.git"
},
"keywords": [
"pm2",
"windows",
"service"
],
"author": "Jon Hall <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jon-hall/pm2-windows-service/issues"
},
"homepage": "https://github.com/jon-hall/pm2-windows-service#readme",
"dependencies": {
"co": "^4.6.0",
"co-event": "^0.1.0",
"del": "^2.1.0",
"fs-extra": "^0.26.2",
"inquirer": "^1.1.2",
"is-admin": "^1.0.2",
"node-windows": "^0.1.10",
"promisify-node": "^0.3.0",
"shelljs": "^0.7.0",
"yargs": "^4.7.1"
},
"engines": {
"node": ">=4.0.0"
},
"os": [
"win32"
],
"devDependencies": {
"temp": "^0.8.3"
}
}