This repository was archived by the owner on May 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.73 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@herajs/client",
"version": "0.8.6",
"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(){ mocha --exit -r babel-register-ts ${1-'test/*.ts'}; }; run",
"test": "npm run lint && npm run type-check && npm run test:ts",
"dev": "rollup -w -c scripts/config.js --environment TARGET:node-esm",
"lint": "eslint --fix src scripts test",
"grpc": "./scripts/gen_proto.sh",
"release": "bash scripts/release.sh",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel-node scripts/build.js",
"build": "npm run build:types && npm run build:js",
"docs": "cd docs && make html",
"type-check": "tsc --noEmit",
"type-check:watch": "npm 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",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.3.4",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@herajs/crypto": "0.4.1",
"@improbable-eng/grpc-web-node-http-transport": "^0.9.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@types/rollup-plugin-json": "^3.0.0",
"async-sema": "^3.0.0",
"babel-register-ts": "^7.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"crypto-js": "^3.1.9-1",
"eslint": "^5.2.0",
"grpc-tools": "^1.6.6",
"mocha": "^6.0.2",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.6.0",
"rollup-plugin-analyzer": "^3.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-progress": "^1.0.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.0",
"ts-protoc-gen": "^0.9.0",
"typescript": "^3.1.3",
"uglify-js": "^3.4.5"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.9.1",
"@types/google-protobuf": "^3.2.7",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"google-protobuf": "^3.6.0",
"grpc": "^1.13.1",
"jsbi": "^2.0.5"
}
}