UNPKG

key-cache

Version:

Storing data in the form of key into the file

60 lines (59 loc) 1.63 kB
{ "name": "key-cache", "version": "1.0.0", "description": "Storing data in the form of key into the file", "main": "lib/main.js", "scripts": { "check": "fecs check src/ test/ --reporter=baidu", "compile": "babel src/ -d lib/", "watch": "npm run compile -- --watch", "start": "node test.js", "prepublish": "npm run compile", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register -t 5000 --recursive -R spec test/", "test": "mocha --compilers js:babel-register --reporter spec --timeout 5000 --recursive test/", "hook-install": "prepush install", "hook-remove": "prepush remove", "release": "bash release.sh" }, "keywords": [ "cache", "filecache", "file", "json cache", "flat-file" ], "prepush": [ "npm run check" ], "repository": { "type": "git", "url": "https://github.com/xuexb/key-cache.git" }, "author": "xiaowu", "license": "MIT", "bugs": { "url": "https://github.com/xuexb/key-cache/issues" }, "homepage": "https://github.com/xuexb/key-cache/", "dependencies": { "fs-extra": ">=0.26.5", "babel-runtime": "6.x" }, "devDependencies": { "babel-cli": "6.x", "babel-plugin-add-module-exports": "*", "babel-plugin-transform-runtime": "6.x", "babel-preset-es2015": "6.x", "babel-preset-stage-0": "6.x", "babel-preset-stage-3": "6.x", "babel-register": ">=6.7.2", "fecs": ">=0.6.5", "istanbul": ">=1.0.0-alpha.2", "mocha": ">=2.4.5", "prepush": ">=3.1.8", "should": ">=8.2.2" }, "engines": { "node": ">= 4.0.0" } }