UNPKG

memo-storage

Version:
53 lines (52 loc) 1.49 kB
{ "name": "memo-storage", "version": "0.2.0", "description": "Storage based cache service", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest", "testWithCoverage": "jest --coverage", "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch", "build": "npm run build:types && npm run build:js", "build:types": "tsc --emitDeclarationOnly", "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\"" }, "repository": { "type": "git", "url": "git+https://github.com/maxmarinich/memo-storage.git" }, "keywords": [ "cache", "cache-service", "cache-storage", "memo-storage" ], "author": "Max Marinich", "maintainers": [ { "name": "Max Marinich", "email": "max.marinich@gmail.com" } ], "license": "MIT", "bugs": { "url": "https://github.com/maxmarinich/memo-storage/issues" }, "homepage": "https://github.com/maxmarinich/memo-storage#readme", "devDependencies": { "@babel/cli": "^7.5.5", "@babel/core": "^7.5.5", "@babel/plugin-proposal-class-properties": "^7.5.5", "@babel/plugin-proposal-numeric-separator": "^7.2.0", "@babel/plugin-proposal-object-rest-spread": "^7.5.5", "@babel/preset-env": "^7.5.5", "@babel/preset-es2015": "^7.0.0-beta.53", "@babel/preset-typescript": "^7.3.3", "@types/jest": "^24.0.18", "jest": "24.9.0", "ts-jest": "^24.9.2", "typescript": "^2.9.2" } }