forked from deblanco/tronix.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "tronixangel.js",
"version": "0.1.3",
"author": "Tron",
"description": "TRONIX Javascript API interface",
"main": "src/index.js",
"homepage": "https://github.com/deblanco/tronix.js",
"scripts": {
"protoc:install": "cd protocol && ./install-protobuf.sh && ./install-googleapis.sh",
"protoc:generate": "./protocol/protobuf-3.5.1/src/.libs/protoc --proto_path=protocol/protobuf-3.5.1/src --proto_path=protocol --grpc_out=./src/protocol --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin` --js_out=import_style=commonjs,binary:src/protocol protocol/core/*.proto protocol/api/*.proto",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:deblanco/tronix.js.git"
},
"keywords": [
"tron"
],
"license": "GPL-3.0",
"dependencies": {
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"ethers": "^4.0.40",
"google-protobuf": "^3.6.1",
"grpc": "^1.12.3",
"grpc-caller": "^0.11.0",
"grpc-tools": "^1.6.6",
"js-sha3": "^0.7.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.1.0"
}
}