main
Last change
on this file since 0c6b92a was d565449, checked in by stefan toskovski <stefantoska84@…>, 3 months ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[d565449] | 1 | {
|
---|
| 2 | "name": "keyv",
|
---|
| 3 | "version": "4.5.4",
|
---|
| 4 | "description": "Simple key-value storage with support for multiple backends",
|
---|
| 5 | "main": "src/index.js",
|
---|
| 6 | "scripts": {
|
---|
| 7 | "build": "echo 'No build step required.'",
|
---|
| 8 | "prepare": "yarn build",
|
---|
| 9 | "test": "xo && c8 ava --serial",
|
---|
| 10 | "test:ci": "xo && ava --serial",
|
---|
| 11 | "clean": "rm -rf node_modules && rm -rf ./coverage && rm -rf ./test/testdb.sqlite"
|
---|
| 12 | },
|
---|
| 13 | "xo": {
|
---|
| 14 | "rules": {
|
---|
| 15 | "unicorn/prefer-module": 0,
|
---|
| 16 | "unicorn/prefer-node-protocol": 0,
|
---|
| 17 | "@typescript-eslint/consistent-type-definitions": 0,
|
---|
| 18 | "unicorn/no-typeof-undefined": 0,
|
---|
| 19 | "unicorn/prefer-event-target": 0
|
---|
| 20 | }
|
---|
| 21 | },
|
---|
| 22 | "repository": {
|
---|
| 23 | "type": "git",
|
---|
| 24 | "url": "git+https://github.com/jaredwray/keyv.git"
|
---|
| 25 | },
|
---|
| 26 | "keywords": [
|
---|
| 27 | "key",
|
---|
| 28 | "value",
|
---|
| 29 | "store",
|
---|
| 30 | "cache",
|
---|
| 31 | "ttl"
|
---|
| 32 | ],
|
---|
| 33 | "author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)",
|
---|
| 34 | "license": "MIT",
|
---|
| 35 | "bugs": {
|
---|
| 36 | "url": "https://github.com/jaredwray/keyv/issues"
|
---|
| 37 | },
|
---|
| 38 | "homepage": "https://github.com/jaredwray/keyv",
|
---|
| 39 | "dependencies": {
|
---|
| 40 | "json-buffer": "3.0.1"
|
---|
| 41 | },
|
---|
| 42 | "devDependencies": {
|
---|
| 43 | "@keyv/test-suite": "*",
|
---|
| 44 | "eslint": "^8.51.0",
|
---|
| 45 | "eslint-plugin-promise": "^6.1.1",
|
---|
| 46 | "pify": "^5.0.0",
|
---|
| 47 | "timekeeper": "^2.3.1",
|
---|
| 48 | "tsd": "^0.29.0"
|
---|
| 49 | },
|
---|
| 50 | "tsd": {
|
---|
| 51 | "directory": "test"
|
---|
| 52 | },
|
---|
| 53 | "types": "./src/index.d.ts",
|
---|
| 54 | "files": [
|
---|
| 55 | "src"
|
---|
| 56 | ]
|
---|
| 57 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.