forked from guerrerocarlos/bitcoin-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 718 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 718 Bytes
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": "bitcoin-miner",
"version": "1.2.1",
"description": "Bitcoin Miner",
"license": "MIT",
"repository": "guerrerocarlos/bitcoin-miner",
"author": {
"name": "Carlos Guerrero",
"email": "guerrerocarlos@gmail.com",
"url": "https://carlosguerrero.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js"
],
"keywords": [
"bitcoin",
"mining",
"miner",
"sha256",
"nonce",
"native",
"js",
"javascript",
"nodejs"
],
"devDependencies": {
"ava": "*",
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"xo": "*"
},
"dependencies": {
"chalk": "^2.3.0"
}
}