git ssb

0+

wanderer🌟 / js-dfinity-radix-tree



Tree: 523fd9bda6df579abb596ed6e04a5c19c32ef4c2

Files: 523fd9bda6df579abb596ed6e04a5c19c32ef4c2 / package.json

1338 bytesRaw
1{
2 "name": "dfinity-radix-tree",
3 "version": "0.2.1",
4 "description": "This implements a binary merkle radix tree",
5 "main": "index.js",
6 "scripts": {
7 "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
8 "coverage": "nyc npm test",
9 "lint": "standard",
10 "test": "node ./tests/index.js",
11 "build:docs": "documentation build ./index.js --github --sort-order source -f md > ./docs/index.md"
12 },
13 "author": "mjbecze <mjbecze@gmail.com>",
14 "license": "MPL-2.0",
15 "keywords": [
16 "merkle",
17 "tree",
18 "ipfs",
19 "dfinity"
20 ],
21 "devDependencies": {
22 "coveralls": "^3.0.0",
23 "documentation": "^6.1.0",
24 "fs-extra": "^5.0.0",
25 "level-browserify": "^1.1.2",
26 "nyc": "^11.6.0",
27 "standard": "^11.0.1",
28 "tape": "^4.6.3"
29 },
30 "dependencies": {
31 "borc": "git+https://github.com/dignifiedquire/borc.git#fix/nested-array",
32 "ipld-graph-builder": "^1.3.8",
33 "node-fetch": "^2.1.2",
34 "text-encoding": "^0.6.4",
35 "uint1array": "^1.0.5"
36 },
37 "browser": {
38 "node-fetch": "./fetch.js"
39 },
40 "standard": {
41 "ignore": [
42 "/benchmark/"
43 ]
44 },
45 "bugs": {
46 "url": "https://github.com/dfinity/js-dfinity-radix-tree/issues"
47 },
48 "repository": {
49 "type": "git",
50 "url": "git+https://github.com/dfinity/js-dfinity-radix-tree.git"
51 }
52}
53

Built with git-ssb-web