-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
55 changed files
with
16,301 additions
and
12,844 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
{ | ||
"name": "@sourceloop/cache", | ||
"version": "3.0.7", | ||
"description": "A caching extension to cache methods.", | ||
"keywords": [ | ||
"loopback-extension", | ||
"loopback", | ||
"cache", | ||
"redis" | ||
], | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"scripts": { | ||
"build": "lb-tsc", | ||
"build:watch": "lb-tsc --watch", | ||
"lint": "npm run eslint && npm run prettier:check", | ||
"lint:fix": "npm run eslint:fix && npm run prettier:fix", | ||
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", | ||
"prettier:check": "npm run prettier:cli -- -l", | ||
"prettier:fix": "npm run prettier:cli -- --write", | ||
"eslint": "eslint --report-unused-disable-directives .", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"pretest": "npm run rebuild", | ||
"test": "lb-mocha --timeout=5000 --allow-console-logs \"dist/__tests__\"", | ||
"posttest": "npm run lint", | ||
"test:dev": "lb-mocha --timeout=5000 --allow-console-logs dist/__tests__/**/*.js && npm run posttest", | ||
"clean": "lb-clean dist *.tsbuildinfo .eslintcache", | ||
"rebuild": "npm run clean && npm run build", | ||
"prune": "npm prune --production", | ||
"coverage": "nyc npm run test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sourcefuse/loopback4-microservice-catalog.git" | ||
}, | ||
"author": "Sourcefuse", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"peerDependencies": { | ||
"@loopback/core": "^6.0.2" | ||
}, | ||
"dependencies": { | ||
"@loopback/core": "^6.0.2", | ||
"@loopback/repository": "^7.0.2", | ||
"@loopback/rest": "^14.0.2", | ||
"@loopback/rest-explorer": "^7.0.2", | ||
"@sourceloop/core": "^15.0.0", | ||
"tslib": "^2.6.2", | ||
"winston": "^3.13.0" | ||
}, | ||
"devDependencies": { | ||
"@istanbuljs/nyc-config-typescript": "^1.0.2", | ||
"@loopback/build": "^11.0.2", | ||
"@loopback/eslint-config": "^15.0.3", | ||
"@loopback/testlab": "^7.0.1", | ||
"@types/dotenv": "^8.2.0", | ||
"@types/node": "^20.12.7", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^8.57.0", | ||
"loopback-connector-kv-redis": "^4.0.0", | ||
"mochawesome": "^7.1.3", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "^5.4.5" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org/", | ||
"access": "public" | ||
}, | ||
"typedoc": { | ||
"config": { | ||
"entryPoints": [ | ||
"src/index.ts" | ||
], | ||
"out": "packages/cache", | ||
"plugin": [ | ||
"typedoc-plugin-markdown" | ||
] | ||
"name": "@sourceloop/cache", | ||
"version": "3.0.7", | ||
"description": "A caching extension to cache methods.", | ||
"keywords": [ | ||
"loopback-extension", | ||
"loopback", | ||
"cache", | ||
"redis" | ||
], | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"scripts": { | ||
"build": "lb-tsc", | ||
"build:watch": "lb-tsc --watch", | ||
"lint": "npm run eslint && npm run prettier:check", | ||
"lint:fix": "npm run eslint:fix && npm run prettier:fix", | ||
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", | ||
"prettier:check": "npm run prettier:cli -- -l", | ||
"prettier:fix": "npm run prettier:cli -- --write", | ||
"eslint": "eslint --report-unused-disable-directives .", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"pretest": "npm run rebuild", | ||
"test": "lb-mocha --timeout=5000 --allow-console-logs \"dist/__tests__\"", | ||
"posttest": "npm run lint", | ||
"test:dev": "lb-mocha --timeout=5000 --allow-console-logs dist/__tests__/**/*.js && npm run posttest", | ||
"clean": "lb-clean dist *.tsbuildinfo .eslintcache", | ||
"rebuild": "npm run clean && npm run build", | ||
"prune": "npm prune --production", | ||
"coverage": "nyc npm run test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sourcefuse/loopback4-microservice-catalog.git" | ||
}, | ||
"author": "Sourcefuse", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"peerDependencies": { | ||
"@loopback/core": "^6.1.6" | ||
}, | ||
"dependencies": { | ||
"@loopback/core": "^6.1.6", | ||
"@loopback/repository": "^7.0.9", | ||
"@loopback/rest": "^14.0.9", | ||
"@loopback/rest-explorer": "^7.0.9", | ||
"@sourceloop/core": "^15.0.0", | ||
"tslib": "^2.6.2", | ||
"winston": "^3.13.0" | ||
}, | ||
"devDependencies": { | ||
"@istanbuljs/nyc-config-typescript": "^1.0.2", | ||
"@loopback/build": "^11.0.8", | ||
"@loopback/eslint-config": "^15.0.4", | ||
"@loopback/testlab": "^7.0.8", | ||
"@types/dotenv": "^8.2.0", | ||
"@types/node": "^20.12.7", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^8.57.0", | ||
"loopback-connector-kv-redis": "^4.0.0", | ||
"mochawesome": "^7.1.3", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "^5.4.5" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org/", | ||
"access": "public" | ||
}, | ||
"typedoc": { | ||
"config": { | ||
"entryPoints": [ | ||
"src/index.ts" | ||
], | ||
"out": "packages/cache", | ||
"plugin": [ | ||
"typedoc-plugin-markdown" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.