Files: f45337de9e0a6483fad38e4162908b16c457c0b2 / package.json
915 bytesRaw
1 | { |
2 | "name": "merkle-radix-tree", |
3 | "version": "0.0.0", |
4 | "description": "This implements a binary merkle radix tree", |
5 | "main": "index.js", |
6 | "scripts": { |
7 | "coverage": "node ./node_modules/istanbul/lib/cli.js cover ./tests/index.js", |
8 | "coveralls": "npm run coverage && coveralls <coverage/lcov.info", |
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 | ], |
20 | "devDependencies": { |
21 | "coveralls": "^2.13.1", |
22 | "documentation": "^5.1.1", |
23 | "ipfs": "^0.25.0", |
24 | "istanbul": "^1.1.0-alpha.1", |
25 | "standard": "^10.0.0", |
26 | "tape": "^4.6.3" |
27 | }, |
28 | "dependencies": { |
29 | "ipld-graph-builder": "^1.2.4", |
30 | "text-encoding": "^0.6.4", |
31 | "uint1array": "^1.0.5" |
32 | } |
33 | } |
34 |
Built with git-ssb-web