-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "cash-cli",
"version": "4.2.1",
"description": "Convert currency rates directly from your terminal!",
"author": {
"name": "Antoni Kepinski",
"email": "[email protected]",
"url": "https://kepinski.me"
},
"license": "MIT",
"repository": "https://github.com/xxczaki/cash-cli",
"bugs": {
"url": "https://github.com/xxczaki/cash-cli/issues"
},
"homepage": "https://github.com/xxczaki/cash-cli",
"main": "index.js",
"scripts": {
"postinstall": "node bin/post-install.js",
"test": "xo && ava"
},
"xo": {
"rules": {
"unicorn/no-process-exit": 0,
"import/no-unassigned-import": 0
},
"esnext": "true"
},
"bin": {
"cash": "./bin/index.js"
},
"keywords": [
"cash-cli",
"currency",
"exchange",
"rates",
"convert",
"cash",
"fixer",
"api",
"money",
"$$$",
"currencies",
"cli"
],
"dependencies": {
"cashify": "^2.0.2",
"chalk": "^3.0.0",
"conf": "^6.2.0",
"getopts": "^2.2.5",
"got": "^9.6.0",
"mem": "^6.0.1",
"ora": "^4.0.3",
"prompts": "^2.3.0"
},
"devDependencies": {
"ava": "*",
"execa": "*",
"xo": "*"
}
}