coinmarketcap-api
Version:
CoinMarketCap API wrapper for node
66 lines (65 loc) • 1.46 kB
JSON
{
"name": "coinmarketcap-api",
"version": "3.1.1",
"description": "CoinMarketCap API wrapper for node",
"license": "MIT",
"repository": {
"url": "https://github.com/tiaanduplessis/coinmarketcap-api",
"type": "git"
},
"homepage": "https://github.com/tiaanduplessis/coinmarketcap-api",
"bugs": "https://github.com/tiaanduplessis/coinmarketcap-api",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"test:cov": "npm run test -- --coverage",
"lint": "standard --fix ./*.js",
"start": "npm run test",
"pretest": "npm run lint",
"docs": "npm run docs:readme && npm run docs:html",
"docs:readme": "documentation readme index.js --section=API",
"docs:html": "documentation build index.js -f html -o docs"
},
"jest": {
"setupFilesAfterEnv": [
"./test.js"
]
},
"author": "Tiaan du Plessis",
"contributors": [
"Abhinav Kasamsetty"
],
"devDependencies": {
"documentation": "12.0.2",
"dotenv": "7.0.0",
"husky": "3.0.0",
"jest": "24.8.0",
"jest-chain": "1.1.2",
"jest-extended": "^0.11.2",
"standard": "14.1.0"
},
"dependencies": {
"node-fetch": "^2.6.0",
"qs": "^6.7.0"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [
"api",
"wrapper",
"coinmarketcap",
"bitcoin",
"cryptocurrency"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}