forked from thelamer/nanocurrency-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "nanocurrency-cli",
"description": "A CLI for the Nano cryptocurrency, allowing you to derive keys, generate seeds, hashes, signatures, proofs of work and blocks.",
"version": "1.1.0",
"author": {
"name": "Marvin ROGER",
"email": "[email protected]",
"url": "https://www.marvinroger.fr"
},
"bugs": "https://github.com/marvinroger/nanocurrency-js/issues",
"dependencies": {
"nanocurrency": ">= 2.2.0 < 3.0.0",
"yargs": "^13.0.0"
},
"files": [
"dist/"
],
"homepage": "https://github.com/marvinroger/nanocurrency-js/tree/master/packages/nanocurrency-cli",
"keywords": [
"cli",
"crypto",
"currency",
"nano",
"pow",
"raiblocks"
],
"license": "GPL-3.0",
"bin": {
"nanocurrency": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/marvinroger/nanocurrency-js.git"
},
"scripts": {
"build:prod": "tsc --build",
"lint": "fusee lint",
"test": "fusee test",
"prepublishOnly": "yarn build:prod && yarn test && yarn lint"
},
"devDependencies": {
"json-stable-stringify-without-jsonify": "^1.0.1"
}
}