-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 964 Bytes
/
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
{
"name": "@grigoryevandrey/convert",
"bin": {
"convert": "./lib/index.js"
},
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && tsc",
"format": "prettier --write \"bin/**/*.ts\""
},
"devDependencies": {
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/node": "^17.0.30",
"@types/yargs": "^17.0.10",
"axios": "^0.27.2",
"boxen": "^4.2.0",
"chalk": "^4.1.1",
"yargs": "^17.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grigoryevandrey/convert.git"
},
"types": "./types",
"version": "1.0.4",
"description": "A cli tool to convert one currency into another using CoinMarketCap API",
"main": "index.js",
"author": "Grigoryev Andrey",
"license": "MIT",
"keywords": [
"coinmarketcap",
"cli",
"convert",
"crypto",
"crypto-convert",
"quotes",
"crypto-quotes"
]
}