-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.61 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
{
"name": "@herajs/client",
"version": "2.1.1",
"description": "Javascript client framework for aergo",
"main": "dist/herajs.common.js",
"module": "dist/herajs.esm.js",
"browser": "dist/herajs.js",
"types": "dist/platforms/node/index.d.ts",
"scripts": {
"test:ts": "run(){ nyc mocha --exit -r babel-register-ts ${1-'test/*.ts'}; }; run",
"test": "yarn run lint && yarn run type-check && yarn run test:ts",
"dev": "rollup -w -c scripts/config.js --environment TARGET:node-esm",
"lint": "eslint --fix src/**/*.ts test/**/*.ts",
"grpc": "./scripts/gen_proto.sh",
"release": "bash scripts/release.sh",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel-node scripts/build.js",
"build": "yarn run build:types && yarn run build:js",
"docs": "cd docs && make html",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aergoio/herajs.git"
},
"author": "aergo team and contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/aergoio/herajs/issues"
},
"homepage": "https://github.com/aergoio/herajs#readme",
"dependencies": {
"@grpc/grpc-js": "^1.11.1",
"@herajs/common": "^2.1.1",
"@improbable-eng/grpc-web": "^0.9.1",
"@types/google-protobuf": "^3.2.7",
"google-protobuf": "^3.21.2",
"hash.js": "^1.1.7",
"jsbi": "^3.0.0"
},
"devDependencies": {
"@improbable-eng/grpc-web-node-http-transport": "^0.9.1",
"grpc_tools_node_protoc_ts": "^5.3.2"
},
"gitHead": "5c14921cf71bcb01d4103dfccba8c6b4ae335fd6"
}