forked from indutny/proof-of-work
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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": "proof-of-work",
"version": "3.3.2",
"description": "SHA256 + Bloom filter proof of work",
"main": "lib/pow.js",
"types": "lib/pow.d.ts",
"bin": {
"proof-of-work": "bin/proof-of-work"
},
"files": [
"lib",
"bin"
],
"scripts": {
"test": "npm run test-node && npm run test-browser && npm run lint",
"test-node": "mocha --reporter=spec test/*-test.js",
"test-browser": "TEST_ENV=browser mocha --reporter=spec test/*-test.js",
"lint": "eslint lib/*.js lib/**/*.js lib/**/**/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/indutny/proof-of-work.git"
},
"keywords": [
"proof",
"of",
"work",
"sha256",
"bloom"
],
"author": "Fedor Indutny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/proof-of-work/issues"
},
"homepage": "https://github.com/indutny/proof-of-work#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^4.19.1",
"mocha": "^5.2.0"
},
"dependencies": {
"hash.js": "^1.1.5",
"minimalistic-assert": "^1.0.1"
},
"browser": {
"./lib/pow/utils/index.js": "./lib/pow/utils/browser.js"
}
}