-
Notifications
You must be signed in to change notification settings - Fork 37
/
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.17",
"description": "Proof of Liabilities (PoL) library and CLI",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"async": "^1.5.0",
"big.js": "^3.1.3",
"commander": "^2.9.0",
"fs-extra": "^0.26.2"
},
"devDependencies": {
"browserify": "^12.0.1",
"crypto-browserify": "^3.11.0",
"mocha": "^2.3.4",
"should": "^7.1.1"
},
"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 <olalonde@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "6d0bc018bb84d03be8e5524f47011a1769d8bfde",
"bugs": {
"url": "https://github.com/olalonde/blind-solvency-proof/issues"
}
}