UNPKG

node-kraken-api

Version:

a typed REST/WS Node.JS client for the Kraken cryptocurrency exchange

61 lines (60 loc) 1.44 kB
{ "name": "node-kraken-api", "version": "2.2.2", "description": "a typed REST/WS Node.JS client for the Kraken cryptocurrency exchange", "license": "MIT", "repository": "git://github.com/jpcx/node-kraken-api.git", "author": { "name": "Justin Collier", "email": "m@jpcx.dev", "url": "https://github.com/jpcx" }, "keywords": [ "kraken", "REST", "WS", "api", "cryptocurrency", "bitcoin", "litecoin", "ethereum", "exchange", "trading" ], "files": [ "README.md", "LICENSE", "index.d.ts", "index.js", "package-lock.json", "package.json" ], "main": "index.js", "types": "index.d.ts", "scripts": { "clean": "rm -f index.js; rm -f index.d.ts; rm -rf test/.build; rm -rf codegen/.build", "build": "tsc --pretty -p .", "test": "npm run clean && tsc --pretty -p test && npx testts test/.build/test/test.js", "codegen": "npm run clean && tsc --pretty -p codegen && sh codegen/codegen.sh", "prepare": "npm run clean && npm run build" }, "engines": { "node": ">=10.0.0" }, "dependencies": { "crc": "^4.1.0", "ts-ev": "^0.4.0", "ws": "^8.5.0" }, "devDependencies": { "@jpcx/testts": "^0.4.0", "@types/crc": "^3.4.0", "@types/node": "^17.0.21", "@types/ws": "^8.5.3", "typescript": "^4.6.2" }, "optionalDependencies": { "bufferutil": "^4.0.6", "utf-8-validate": "^5.0.9" } }