-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
59
60
61
62
63
64
65
66
{
"name": "rpc-automagic",
"version": "1.2.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": [
"src/*",
"dist/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p src/",
"test": "jest --config test/jest.config.json",
"lint": "tslint --project src/",
"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/rpc-automagic.git"
},
"keywords": [
"json-rpc",
"json-rpc 2.0",
"tiny-rpc",
"rpc-server",
"rpc-automagic",
"rpc-generation",
"rpc-http",
"auto-rpc",
"node-rpc",
"ts-rpc-server"
],
"author": "Decentro GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/decentro-gmbh/rpc-automagic/issues"
},
"homepage": "https://decentro-gmbh.github.io/rpc-automagic/",
"dependencies": {
"ajv": "^6.6.2",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"morgan": "^1.9.1",
"nconf": "^0.10.0"
},
"devDependencies": {
"@decentro/tslint": "^1.0.1",
"@types/es6-promise": "^3.3.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.10",
"@types/morgan": "^1.7.35",
"@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"
}
}