-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
42 lines (42 loc) · 838 Bytes
/
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
{
"name": "merkle",
"version": "0.6.0",
"description": "Javascript implementation of merkle trees",
"main": "merkle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/*.js",
"start": "bin/merkle"
},
"repository": {
"type": "git",
"url": "[email protected]:c-geek/merkle.git"
},
"keywords": [
"hash trees",
"cryptography"
],
"author": "Cedric Moreau <[email protected]>",
"license": "MIT",
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/c-geek/merkle/issues"
},
"dependencies": {
"optimist": "0.6.1",
"through": "2.3.6"
},
"devDependencies": {
"mocha": "",
"should": "",
"async": "",
"supertest": "",
"event-stream": "",
"concat-stream": ""
},
"bin": {
"merkle": "./bin/merkle"
}
}