UNPKG

chronik-cache

Version:

A cache helper for chronik-client

55 lines (54 loc) 1.33 kB
{ "name": "chronik-cache", "version": "1.2.3", "description": "A cache helper for chronik-client", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "test": "npm run test:unit", "test:unit": "mocha -r ts-node/register test/unit/**/*.test.js", "test:integration": "mocha -r ts-node/register test/basic.test.js", "test:integration:live": "RUN_CHRONIK_INTEGRATION=1 mocha -r ts-node/register test/basic.test.js", "test:js": "mocha test/**/*.test.js", "start": "node dist/index.js", "example": "node example.js", "prepublishOnly": "npm run build" }, "author": "Alita Yin", "license": "ISC", "keywords": [ "chronik", "ecash", "cache", "typescript" ], "dependencies": { "chronik-client": "^3.3.0", "crypto-js": "^4.2.0", "ecashaddrjs": "^2.0.0", "express": "^5.1.0", "level": "^9.0.0" }, "devDependencies": { "@types/crypto-js": "^4.2.2", "@types/node": "^20.19.9", "mocha": "^11.1.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "files": [ "dist", "src", "index.ts", "README.md" ], "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.js" } } }