-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 740 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 740 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
{
"name": "xmr-dev-tools",
"version": "0.0.3",
"description": "CLI for generating Monero brain wallets, and experimenting with Monero development",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "Jordan Leigh (@AlwaysBCoding)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/AlwaysBCoding/xmr-dev-tools"
},
"keywords": [
"monero",
"xmr",
"cryptocurrency"
],
"bin": {
"xmr-dev-tools": "./index.js"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"js-sha3": "^0.7.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"jest-cli": "^19.0.2"
},
"jest": {
"testEnvironment": "node"
}
}