blockchain-rates
Version:
A tiny Node.js wrapper for the Blockchain Exchange Rates API
63 lines (62 loc) • 1.86 kB
JSON
{
"name": "blockchain-rates",
"version": "1.1.4",
"description": "A tiny Node.js wrapper for the Blockchain Exchange Rates API",
"engines": {
"node": ">=12"
},
"keywords": [
"bitcoin",
"blockchain",
"rates",
"countries",
"price"
],
"author": "Mario Colque <dev@colkito.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/colkito/blockchain-rates.git"
},
"bugs": {
"url": "https://github.com/colkito/blockchain-rates/issues"
},
"homepage": "https://github.com/colkito/blockchain-rates#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc --declaration && tsc --removeComments && npm run minifyDeclarations && npm run minify",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts}' --quiet --fix",
"minify": "jsmin -l 3 -o dist/index.js dist/index.js",
"minifyDeclarations": "jsmin -l 3 -o dist/index.d.ts dist/index.d.ts",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src package.json",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^29.4.0",
"jsmin": "^1.0.1",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"ts-jest": "^29.0.5",
"typescript": "^4.2.3"
},
"resolutions": {
"json-schema": "^0.4.0"
},
"files": [
"dist/**/*"
]
}