-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
{
"name": "pm2-rpc-api",
"version": "1.0.0",
"description": "Simple HTTP JSON-RPC API for administrative tasks on PM2 managed node containers",
"main": "dist/rpc-server.js",
"types": "dist/rpc-server.d.ts",
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p src/",
"test": "jest --config test/jest.config.json",
"debug": "TS_NODE_PROJECT=src/tsconfig.json TS_NODE_FILE=true node -r ts-node/register --inspect=0.0.0.0 --inspect-brk example/server.ts",
"start": "ts-node --project src/tsconfig.json example/server.ts",
"gen-doc": "typedoc --hideGenerator --tsconfig src/tsconfig.json --out docs/ src/"
},
"prepublishOnly": "npm run build",
"repository": {
"type": "git",
"url": "git+https://github.com/decentro-gmbh/pm2-rpc-api.git"
},
"keywords": [
"pm2",
"json-rpc"
],
"author": "Decentro GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/decentro-gmbh/pm2-rpc-api/issues"
},
"homepage": "https://github.com/decentro-gmbh/pm2-rpc-api#readme",
"dependencies": {
"ajv": "^6.6.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"execa": "^1.0.0",
"express": "^4.16.4",
"nconf": "^0.10.0",
"pm2": "^3.2.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/execa": "^0.9.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.10",
"@types/nconf": "0.0.37",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typedoc": "^0.13.0",
"typescript": "^3.2.2"
}
}