-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.6 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
{
"name": "@polkajs/merkle-patricia-tree",
"version": "2.0.5",
"description": "Merkle Patricia Tree implementation for the Ethereum type blockchain",
"main": "./lib/MerklePatricia.js",
"scripts": {
"lint+build+test": "yarn run lint && yarn run build && yarn run test",
"lint": "echo linting... && eslint ./src/**/*.js && echo 'successfully linted'",
"build": "echo building... && babel src/ -d lib/ && echo 'successfully built'",
"prepublish": "yarn run build && node cleanup.js",
"test": "echo running server tests... && tape test/**/*.js | tap-summary && echo 'successfully completed tests'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolkaJS/merkle-patricia-tree.git"
},
"author": "Craig OConnor",
"license": "ISC",
"bugs": {
"url": "https://github.com/PolkaJS/merkle-patricia-tree/issues"
},
"homepage": "https://github.com/PolkaJS/merkle-patricia-tree#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"chalk": "^2.1.0",
"eslint": "^4.0.0",
"flow-bin": "^0.55.0",
"random-hex-string": "^1.0.0",
"random-word": "^2.0.0",
"rlp": "^2.0.0",
"tape": "^4.6.3"
},
"dependencies": {
"@polkajs/rlp": "^1.4.0",
"keccak": "^1.3.0",
"leveldown": "^2.0.0",
"levelup": "^1.3.8",
"redtape": "^1.0.0",
"rimraf": "^2.6.2"
}
}