You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

144 lines
3.3 KiB

{
"name": "@keyvhq/monorepo",
"description": "Simple key-value storage with support for multiple backends",
"homepage": "https://github.com/keyvhq/keyv#readme",
"version": "",
"author": {
"email": "lukechilds123@gmail.com",
"name": "Luke Childs",
"url": "http://lukechilds.co.uk"
},
"contributors": [
{
"name": "Casey Webb",
"email": "notcaseywebb@gmail.com"
},
{
"name": "Dan Dascalescu",
"email": "ddascalescu+github@gmail.com"
},
{
"name": "Dušan Simić",
"email": "dusan.simic1810@gmail.com"
},
{
"name": "Jared Wray",
"email": "jaredwray@gmail.com"
},
{
"name": "Jitendra Adhikari",
"email": "jiten.adhikary@gmail.com"
},
{
"name": "Jérôme Desboeufs",
"email": "jerome.desboeufs@gmail.com"
},
{
"name": "Kent C. Dodds",
"email": "me+github@kentcdodds.com"
},
{
"name": "Kiko Beats",
"email": "josefrancisco.verdu@gmail.com"
},
{
"name": "Mateu Aguiló Bosch",
"email": "mateu@lullabot.com"
},
{
"name": "MySidesTheyAreGone",
"email": "mysidestheyaregone@protonmail.com"
},
{
"name": "Paul Morgan III",
"email": "pmorgan3@gmail.com"
},
{
"name": "Romuald Quantin",
"email": "romu@soundstep.com"
},
{
"name": "Roney Rao",
"email": "roneyrao@hotmail.com"
},
{
"name": "chocolateboy",
"email": "chocolate@cpan.org"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/keyvhq/keyv.git"
},
"bugs": {
"url": "https://github.com/keyvhq/keyv/issues"
},
"keywords": [
"adapter",
"cache",
"key",
"keyv",
"mongo",
"mongodb",
"mysql",
"pgsql",
"redis",
"sql",
"sqlite",
"sqlite3",
"storage",
"store",
"ttl",
"value"
],
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"lerna": "latest",
"lint-staged": "latest",
"simple-git-hooks": "latest",
"standard": "latest"
},
"engines": {
"node": ">= 12"
},
"files": [
"packages/**"
],
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"contributors": "(lerna exec finepack --parallel && git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"install": "lerna bootstrap --no-ci --force-local",
"lint": "standard",
"prerelease": "npm run contributors",
"pretest": "npm run lint",
"release": "lerna publish --yes --sort --conventional-commits -m \"chore(release): %s\" --create-release github",
"test": "lerna exec npm run test",
"update": "lerna exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "lerna exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2"
},
"private": "true",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"prettier-standard"
],
"*.md": [
"standard-markdown"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx lint-staged"
},
"workspaces": [
"packages/*"
]
}