bitcoin-converter-cli
Version:
A CLI to convert Bitcoin to any currency provided
86 lines (85 loc) • 2.09 kB
JSON
{
"name": "bitcoin-converter-cli",
"version": "1.0.7",
"description": "A CLI to convert Bitcoin to any currency provided",
"main": "bin/main.js",
"scripts": {
"clear": "rimraf bin",
"build": "npm run clear && babel --out-dir bin src",
"build:watch": "npm run build -- --watch",
"lint": "eslint .",
"test": "mocha tests/**/*.spec.js --require @babel/polyfill",
"test:tdd": "npm test -- --watch ",
"test:coverage": "nyc npm test",
"link": "npm run build && npm link",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"preferGlobal": true,
"bin": {
"bitcoin-converter-cli": "bin/main.js"
},
"nyc": {
"functions": 80,
"lines": 80,
"check-converage": true,
"reporter": [
"text",
"html",
"lcov"
],
"exclude": [
"tests/**",
"bin/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaaomanooel/bitcoin-converter-cli.git"
},
"keywords": [
"bitcoin",
"btc",
"coin",
"money",
"cli",
"node",
"nodejs",
"chank",
"js",
"tdd",
"library",
"currency",
"currency-converter"
],
"author": "João Manoel Neto <joaaomanooel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaaomanooel/bitcoin-converter-cli/issues"
},
"homepage": "https://github.com/joaaomanooel/bitcoin-converter-cli#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.0.0",
"ora": "^4.0.3",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
}
}