-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@tgrospic/rnode-http-js",
"preview": true,
"version": "0.1.7",
"description": "HTTP client support for RNode",
"repository": "github:tgrospic/rnode-http-js",
"author": "Tomislav Grospič (RChain.coop)",
"license": "MIT",
"main": "dist/index.js",
"module": "dist-module/index.js",
"types": "dist-types/index.d.ts",
"scripts": {
"start": "run-p build:es5:w build:es5:module:w",
"build": "run-p build:es5 build:es5:module build:docs",
"build:es5": "tsc",
"build:es5:w": "tsc -w",
"build:es5:module": "tsc --module es6 --outdir dist-module",
"build:es5:module:w": "tsc -w --module es6 --outdir dist-module",
"build:docs": "typedoc src --out dist-docs --excludePrivate --excludeProtected",
"prepublishOnly": "npm-run-all clean build",
"publish:public": "npm publish --access public",
"clean": "rimraf dist dist-module dist-types dist-docs",
"clean:all": "rimraf dist dist-module dist-types dist-docs node_modules"
},
"keywords": [
"rchain",
"http",
"web",
"javascript",
"js",
"rnode",
"rholang"
],
"dependencies": {
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"elliptic": "^6.5.3",
"ethereumjs-util": "^7.0.7",
"google-protobuf": "^3.14.0",
"js-sha3": "^0.8.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/elliptic": "^6.4.14",
"@types/ethereumjs-util": "^6.1.0",
"@types/google-protobuf": "^3.15.5",
"@types/ramda": "^0.27.60",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"files": [
"dist",
"dist-module",
"dist-types",
"src"
]
}