adonis5-cache
Version:
Cache provider for AdonisJS 5
151 lines (150 loc) • 3.99 kB
JSON
{
"name": "adonis5-cache",
"version": "1.3.1",
"description": "Cache provider for AdonisJS 5",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"dev": "tsc --watch",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "cpx 'templates/**' 'build/templates'",
"build": "npm run compile",
"test": "node japaFile.js",
"prepare": "npm run build",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"run-prettier": "prettier --write .",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json reg2005/adonis5-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg2005/adonis5-cache.git"
},
"keywords": [
"Adonis",
"5",
"adonis-cache"
],
"author": "Vladyslav Parashchenko",
"contributors": [
{
"name": "Vladyslav Parashchenko",
"email": "vladyslavparashchenko37@gmail.com"
},
{
"name": "Ryumin Evgeniy",
"email": "cmp08@ya.ru"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reg2005/adonis5-cache/issues"
},
"homepage": "https://github.com/reg2005/adonis5-cache#readme",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "npm audit --production --json | ./node_modules/.bin/npm-audit-html && git add npm-audit.html && doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"main": "build/index.js",
"files": [
"build/src",
"build/adonis-typings",
"build/providers",
"build/templates",
"build/index.d.ts",
"build/index.js"
],
"adonisjs": {
"types": "adonis5-cache",
"providers": [
"adonis5-cache"
],
"templates": {
"basePath": "./build/templates",
"config": [
{
"src": "config.txt",
"dest": "cache"
}
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"dependencies": {
"dayjs": "^1.10.4",
"ms": "^2.1.2",
"ramda": "^0.27.1"
},
"peerDependencies": {
"@adonisjs/events": "^7.0.1",
"@adonisjs/redis": "^7.0.2",
"adonis5-memcached-client": "^1.0.5"
},
"devDependencies": {
"@adonisjs/ace": "^11.0.1",
"@adonisjs/core": "^5.1.6",
"@adonisjs/events": "^7.0.1",
"@adonisjs/fold": "^8.1.2",
"@adonisjs/ioc-transformer": "^1.0.3",
"@adonisjs/logger": "^2.0.7",
"@adonisjs/mrm-preset": "^3.0.0",
"@adonisjs/redis": "^7.0.2",
"@adonisjs/require-ts": "^2.0.4",
"@poppinss/dev-utils": "^1.1.2",
"@types/memcached": "^2.2.6",
"@types/node": "^14.14.44",
"@types/ramda": "^0.27.40",
"adonis5-memcached-client": "^1.0.5",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.2.0",
"debug": "^4.1.1",
"del-cli": "^3.0.1",
"doctoc": "^1.4.0",
"dotenv": "^8.6.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-adonis": "^1.3.1",
"eslint-plugin-prettier": "^3.4.0",
"get-port": "^5.1.1",
"github-label-sync": "^2.0.0",
"husky": "^4.3.8",
"japa": "^3.1.1",
"mrm": "^3.0.1",
"np": "^7.5.0",
"npm-audit-html": "^1.4.1",
"pino-pretty": "^4.7.1",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.19",
"supertest": "^4.0.2",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"yargs": "^15.4.1"
}
}