-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 858 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 858 Bytes
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
{
"name": "@erebos/rpc-node",
"version": "0.11.0",
"description": "RPC for node",
"repository": "git@github.com:MainframeHQ/erebos.git",
"main": "lib/index.js",
"types": "types/index.d.ts",
"author": "Mainframe",
"license": "MIT",
"files": [
"lib/*",
"types/*"
],
"scripts": {
"clean": "del lib types",
"test:types": "tsc --noEmit -p tsconfig.build.json",
"build:js": "BABEL_ENV=node babel src --out-dir lib --extensions \".ts\"",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build": "yarn test:types && yarn clean && yarn build:js && yarn build:types",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@babel/runtime": "^7.8.3",
"@erebos/rpc-http-node": "^0.11.0",
"@erebos/rpc-ipc": "^0.11.0",
"@erebos/rpc-ws-node": "^0.11.0",
"rxjs": "^6.5.4"
}
}