This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cashtui",
"version": "0.0.18",
"description": "Text UI for Bitcoin Cash nodes",
"homepage": "https://github.com/proehlen/cashtui#README.md",
"main": "dist/index.js",
"author": "Peter Roehlen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/proehlen/cashtui.git"
},
"bin": {
"cashtui": "./bin/cashtui.js"
},
"files": [
"dist",
"bin"
],
"keywords": [
"bitcoin",
"cash",
"bch",
"ui",
"developer",
"tool",
"user interface",
"command line",
"shell",
"console",
"nodejs"
],
"scripts": {
"build": "npm run eslint && npm run clean && npm run flowbuild && babel src -d dist",
"clean": "rimraf dist",
"eslint": "eslint src",
"flow": "flow",
"flowbuild": "flow-copy-source src dist",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js"
},
"dependencies": {
"cashlib": "0.0.15",
"clear-console": "^1.1.0",
"cliui": "^4.1.0",
"colors": "^1.3.2",
"node-localstorage": "^1.3.1",
"stringfu": "0.0.4",
"tooey": "0.0.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"flow-copy-source": "^2.0.2",
"rimraf": "^2.6.2"
}
}