forked from olalonde/proof-of-liabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "lproof",
"version": "0.0.16",
"description": "Proof of Liabilities (PoL) library and CLI",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"commander": "~2.1.0",
"async": "~0.2.10",
"fs-extra": "~0.8.1",
"big.js": "~2.5.0"
},
"devDependencies": {
"crypto-browserify": "~2.1.0",
"browserify": "~3.32.1",
"mocha": "~1.17.1",
"should": "~3.1.3"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec test/",
"build": "./node_modules/.bin/browserify index.js --standalone lproof > ./build/lproof.js"
},
"bin": {
"lproof": "./cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/olalonde/blind-solvency-proof.git"
},
"homepage": "http://olalonde.github.io/blind-liability-proof",
"keywords": [
"bitcoin",
"pol",
"proof of liability",
"liability",
"proof",
"cryptography",
"solvency"
],
"author": "Olivier Lalonde <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "6d0bc018bb84d03be8e5524f47011a1769d8bfde",
"bugs": {
"url": "https://github.com/olalonde/blind-solvency-proof/issues"
}
}