-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
87 lines (87 loc) · 2.31 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "rchain-api",
"version": "0.10.0",
"description": "RChain client for node.js, browsers",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"check": "yarn test && yarn lint",
"test": "ava --verbose",
"test:md": "markdown-doctest",
"lint-fix": "yarn lint --fix",
"lint-check": "yarn lint",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:eslint": "eslint",
"lint:types": "tsc -p jsconfig.json",
"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"
},
"ava": {
"files": [
"test/**/test*.js"
],
"require": [
"esm"
],
"timeout": "2m"
},
"config": {
"host": "localhost",
"port": "40401"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rchain-community/RChain-API.git"
},
"keywords": [
"rchain",
"blockchain",
"rholang"
],
"contributors": [
"Dan Connolly <dckc@madmode.com> (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": {
"@jessie.js/eslint-plugin": "^0.1.3",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.0.7",
"google-protobuf": "^3.13.0",
"jessie.js": "^0.2.0",
"js-sha3": "^0.8.0"
},
"devDependencies": {
"@types/node": "^14.11.2",
"ava": "^3.13.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6
},
"extends": [
"plugin:@jessie.js/recommended"
]
},
"TODO": {
"documentation": "^8.0.2"
}
}