UNPKG

1.17 kBJSONView Raw
1{
2 "name": "keyv",
3 "version": "1.0.0",
4 "description": "Simple key-value storage with support for multiple backends",
5 "main": "src/index.js",
6 "scripts": {
7 "test": "xo && nyc ava test/keyv.js",
8 "test:full": "xo && nyc ava --serial",
9 "coverage": "nyc report --reporter=text-lcov | coveralls"
10 },
11 "xo": {
12 "extends": "xo-lukechilds"
13 },
14 "repository": {
15 "type": "git",
16 "url": "git+https://github.com/lukechilds/keyv.git"
17 },
18 "keywords": [
19 "key",
20 "value",
21 "store",
22 "cache",
23 "ttl"
24 ],
25 "author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
26 "license": "MIT",
27 "bugs": {
28 "url": "https://github.com/lukechilds/keyv/issues"
29 },
30 "homepage": "https://github.com/lukechilds/keyv",
31 "dependencies": {
32 "json-buffer": "3.0.0"
33 },
34 "devDependencies": {
35 "ava": "^0.20.0",
36 "coveralls": "^2.13.1",
37 "delay": "^2.0.0",
38 "eslint-config-xo-lukechilds": "^1.0.0",
39 "keyv-mongo": "*",
40 "keyv-mysql": "*",
41 "keyv-postgres": "*",
42 "keyv-redis": "*",
43 "keyv-sqlite": "*",
44 "keyv-test-suite": "*",
45 "nyc": "^11.0.3",
46 "this": "^1.0.2",
47 "xo": "^0.19.0"
48 }
49}