UNPKG

727 BJSONView Raw
1{
2 "name": "proof-of-work",
3 "version": "1.0.0",
4 "description": "SHA256 + Bloom filter proof of work",
5 "main": "lib/pow.js",
6 "bin": {
7 "proof-of-work": "bin/proof-of-work"
8 },
9 "scripts": {
10 "test": "mocha --reporter=spec test/*-test.js"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/indutny/proof-of-work.git"
15 },
16 "keywords": [
17 "proof",
18 "of",
19 "work",
20 "sha256",
21 "bloom"
22 ],
23 "author": "Fedor Indutny <fedor@indutny.com>",
24 "license": "MIT",
25 "bugs": {
26 "url": "https://github.com/indutny/proof-of-work/issues"
27 },
28 "homepage": "https://github.com/indutny/proof-of-work#readme",
29 "devDependencies": {
30 "mocha": "^2.4.5"
31 },
32 "dependencies": {
33 }
34}