forked from rchain-community/rchain-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
{
"name": "rchain-api",
"version": "0.9.2-beta.4",
"description": "RChain client for node.js",
"main": "index.js",
"scripts": {
"$note": [
"--no-package-lock is to avoid ENOENT in staging",
"https://github.com/npm/npm/issues/20119",
"https://npm.community/t/issue-npm-install-with-local-packages-and-symlinks-enoent/518/4"
],
"postinstall": "cd rclient; npm install --no-package-lock",
"testAll": "npm run check && npm run integrationTest",
"build:docs": "documentation build -f md --github --sort-order alpha index.js src/**.js --shallow -o docs/index.md && markdown-doctest",
"build:docs-html": "documentation build -f html --github --sort-order alpha index.js src/**.js --shallow -o docs/",
"doc-watch": "documentation serve --watch index.js --config docs/config.yml src/**.js --shallow",
"check": "npm run test && npm run build:docs && npm run lint && npm run flow-check",
"test": "tape test/**/*.js && markdown-doctest",
"integrationTest": "node test/testRNode.js --net && node test/liveRHOCoreTest.js && node test/liveRNodeTest.js",
"flow-check": "flow check --from emacs",
"flow-status": "flow status --from emacs",
"lint": "eslint *.js **/*.js --format unix --ignore-pattern interfaces/ --ignore-pattern node_modules/ --ignore-pattern protobuf/ --ignore-pattern '!.markdown-doctest-setup.js'"
},
"config": {
"host": "localhost",
"port": "40401"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rchain-community/RChain-API.git"
},
"keywords": [
"rchain",
"grpc",
"blockchain",
"rholang"
],
"contributors": [
"Dan Connolly <[email protected]> (http://www.madmode.com)",
"Joshy Orndorff",
"Chris Williams"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rchain-community/RChain-API/issues"
},
"homepage": "https://github.com/rchain-community/RChain-API#readme",
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"blake2": "^2.0.1",
"bs58": "^4.0.1",
"grpc": "^1.13.1",
"js-sha3": "^0.8.0",
"protobufjs": "^6.8.8",
"remote-origin-url": "^1.0.0",
"tweetnacl": "^1.0.0"
},
"devDependencies": {
"documentation": "^8.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"flow-bin": "^0.81.0",
"markdown-doctest": "^0.9.1",
"tape": "^4.10.1"
},
"TODO": {
"documentation": "^8.0.2"
}
}