-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
67
68
69
70
71
72
{
"name": "rpc-controllers",
"version": "0.0.4",
"description": "Use class-based controllers to create JSON-RPC 2.0 server usage in Express / Koa and TypeScript",
"main": "index.js",
"private": true,
"scripts": {
"test": "gulp package"
},
"repository": {
"type": "git",
"url": "https://github.com/rustamwin/rpc-controllers.git"
},
"keywords": [
"rpc",
"typescript",
"json-rpc",
"rpc-framework",
"rpc-server"
],
"author": {
"name": "Rustam Mamadaminov",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rustamwin/rpc-controllers/issues"
},
"homepage": "https://github.com/rustamwin/rpc-controllers#readme",
"dependencies": {
"class-transformer": "^0.3.1",
"class-validator": "^0.13.1",
"glob": "^7.1.6",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/express": "^4.17.11",
"@types/koa": "^2.11.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.33",
"@types/sinon": "^9.0.10",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chakram": "^1.5.0",
"cors": "^2.8.5",
"del": "^6.0.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^8.0.0",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"gulpclass": "^0.2.0",
"jayson": "^3.4.4",
"kcors": "^2.2.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.4.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-stylish": "^2.1.0",
"typedi": "^0.10.0",
"typescript": "^4.2.3"
}
}