-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.68 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": "orpc",
"version": "0.1.1",
"publishConfig": {
"access": "public"
},
"description": "The type-safe Node.js and browser RPC library built on top of socket.io. Empowered with SOA governance and load balancing.",
"repository": {
"type": "git",
"url": "https://github.com/dizys/orpc"
},
"author": {
"name": "Dizy",
"email": "[email protected]"
},
"keywords": [
"orpc",
"rpc",
"socket.io",
"type-safe",
"typescript",
"AOC",
"governance",
"load-balancing"
],
"license": "MIT",
"scripts": {
"build:library": "tslint -p src/library && rimraf bld/library && tsc -p src/library",
"typecheck:test": "tsc -p test",
"lint:library": "tslint -p src/library",
"lint:test": "tslint -p test",
"test:library": "yarn build:library && yarn lint:library && jest --detectOpenHandles",
"test:test": "yarn typecheck:test && yarn lint:test",
"test": "yarn test:library && yarn test:test"
},
"main": "bld/library/index.js",
"types": "bld/library/index.d.ts",
"files": [
"bld/library",
"!*.js.map"
],
"peerDependencies": {
"socket.io": "^2.0.0",
"socket.io-client": "^2.0.0"
},
"devDependencies": {
"@magicspace/configs": "^0.1.44",
"@types/jest": "^23.3.5",
"@types/socket.io": "^2.1.0",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.4",
"jest": "^23.6.0",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.1.2"
},
"dependencies": {
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uuid": "^3.3.2"
}
}