forked from jbaylina/merkle-patricia-tree
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "merkle-patricia-tree",
"version": "2.1.2",
"description": "This is an implementation of the modified merkle patricia tree as speficed in the Ethereum's yellow paper.",
"main": "index.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"coverage": "istanbul cover ./test/index.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"prepublish": "npm run build",
"test:browser": "karma start karma.conf.js",
"test:node": "tape ./test/*.js",
"build": "browserify --s Trie index.js > ./dist/trie.js",
"build:docs": "documentation --github -f md ./index.js ./secure.js > ./docs/index.md"
},
"author": {
"name": "mjbecze",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/merkle-patricia-tree.git"
},
"bugs": {
"url": "https://github.com/ethereumjs/merkle-patricia-tree/issues"
},
"keywords": [
"merkle",
"radix",
"trie",
"ethereum"
],
"license": "MPL-2.0",
"dependencies": {
"async": "^1.4.2",
"ethereumjs-util": "^4.0.0",
"level-ws": "0.0.0",
"levelup": "^1.2.1",
"memdown": "^1.0.0",
"readable-stream": "^2.0.0",
"rlp": "^2.0.0",
"semaphore": ">=1.0.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"coveralls": "^2.11.6",
"documentation": "^3.0.4",
"ethereumjs-testing": "0.0.1",
"istanbul": "^0.4.1",
"karma": "^0.13.18",
"karma-browserify": "^5.0.0",
"karma-chrome-launcher": "^0.2.2",
"karma-detect-browsers": "^2.0.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^0.1.7",
"karma-tap": "^1.0.3",
"standard": "^5.3.1",
"tape": "^4.4.0"
},
"standard": {
"ignore": [
"dist/**",
"package-init.js",
"package.js"
]
},
"contributors": [
"Aaron Kumavis <http://aaron.kumavis.me/> (https://github.com/kumavis)"
]
}