-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.79 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.79 KB
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
{
"name": "@etclabscore/pristine-typescript",
"version": "0.0.0-development",
"description": "",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:typings && npm run build:client && npm run install:client && npm run build:code",
"build:code": "tsc",
"lint": "tslint --fix -p .",
"build:typings": "open-rpc-typings --output-ts src/generated-types",
"build:client": "open-rpc-generator-client --ts-name=rainbow-relay-server -o generated-client && ( cd generated-client/typescript && npm install && npm run build)",
"install:client": "npm pack generated-client/typescript/ && mv rainbow-relay-server-*.tgz rainbow-relay-server-client.tgz && npm install --no-save rainbow-relay-server-client.tgz",
"clean": "npm uninstall rainbow-relay-server-client",
"test": "npm run lint && npm run build && jest --coverage"
},
"author": "zcstarr",
"license": "Apache-2.0",
"dependencies": {
"@open-rpc/generator": "^1.18.5",
"@open-rpc/semantic-release-plugin": "^1.0.2",
"@open-rpc/server-js": "^1.6.2",
"@open-rpc/typings": "^1.9.0",
"@semantic-release/exec": "^5.0.0",
"bn.js": "^5.1.3",
"body-parser": "^1.19.0",
"commander": "^6.1.0",
"connect": "^3.7.0",
"ethereumjs-util": "^7.0.5",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.20",
"request": "^2.88.0",
"winston": "^3.2.1",
"ws": "^7.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.13",
"@types/json-schema": "^7.0.4",
"@types/lodash": "^4.14.161",
"typedoc": "^0.15.0",
"@types/node": "^12.12.17",
"@types/ws": "^6.0.4",
"jest": "^24.8.0",
"ts-jest": "^24.1.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}