-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
80 additions
and
87 deletions.
There are no files selected for viewing
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,5 +1,3 @@ | ||
'use strict' | ||
|
||
const parent = require('aedes-persistence/abstract') | ||
|
||
module.exports = parent |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('neostandard')({}) |
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
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,77 +1,71 @@ | ||
{ | ||
"name": "aedes-cached-persistence", | ||
"version": "9.0.0", | ||
"description": "Abstract class to write an Aedes persistence with in-process caching of subscriptions", | ||
"main": "index.js", | ||
"types": "types/index.d.ts", | ||
"scripts": { | ||
"lint": "npm run lint:standard", | ||
"lint:standard": "standard --verbose | snazzy", | ||
"unit": "tape test.js | faucet", | ||
"test": "npm run lint && npm run unit && tsd", | ||
"test:types": "tsd", | ||
"coverage": "nyc --reporter=lcov tape test.js", | ||
"test:ci": "npm run lint && npm run coverage", | ||
"license-checker": "license-checker --production --onlyAllow='MIT;ISC;BSD-3-Clause;BSD-2-Clause'", | ||
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it --disable-metrics" | ||
}, | ||
"release-it": { | ||
"github": { | ||
"release": true | ||
}, | ||
"git": { | ||
"tagName": "v${version}" | ||
}, | ||
"hooks": { | ||
"before:init": [ | ||
"npm run test" | ||
] | ||
}, | ||
"npm": { | ||
"publish": true | ||
} | ||
}, | ||
"pre-commit": [ | ||
"test" | ||
], | ||
"engines": { | ||
"node": ">=14" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/moscajs/aedes-cached-persistence.git" | ||
}, | ||
"keywords": [ | ||
"aedes", | ||
"persistence", | ||
"cache", | ||
"in-memory" | ||
], | ||
"author": "Matteo Collina <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/moscajs/aedes-cached-persistence/issues" | ||
}, | ||
"homepage": "https://github.com/moscajs/aedes-cached-persistence#readme", | ||
"devDependencies": { | ||
"aedes": "^0.46.3", | ||
"concat-stream": "^2.0.0", | ||
"faucet": "0.0.1", | ||
"license-checker": "^25.0.1", | ||
"mqemitter": "^4.5.0", | ||
"nyc": "^15.1.0", | ||
"pump": "^3.0.0", | ||
"release-it": "^15.0.0", | ||
"snazzy": "^9.0.0", | ||
"standard": "^17.0.0", | ||
"tape": "^5.2.1", | ||
"through2": "^4.0.2", | ||
"tsd": "^0.20.0" | ||
}, | ||
"dependencies": { | ||
"aedes-persistence": "^9.1.2", | ||
"fastparallel": "^2.4.1", | ||
"multistream": "^4.1.0", | ||
"qlobber": "^7.0.0" | ||
} | ||
"name": "aedes-cached-persistence", | ||
"version": "9.0.0", | ||
"description": "Abstract class to write an Aedes persistence with in-process caching of subscriptions", | ||
"main": "index.js", | ||
"types": "types/index.d.ts", | ||
"scripts": { | ||
"lint": "eslint", | ||
"lint:fix": "eslint --fix", | ||
"unit": "node --test test.js", | ||
"test": "npm run lint && npm run unit && tsd", | ||
"test:typescript": "tsd", | ||
"coverage": "nyc --reporter=lcov node --test test.js", | ||
"test:ci": "npm run lint && npm run coverage && npm run test:typescript", | ||
"license-checker": "license-checker --production --onlyAllow='MIT;ISC;BSD-3-Clause;BSD-2-Clause'", | ||
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it --disable-metrics" | ||
}, | ||
"release-it": { | ||
"github": { | ||
"release": true | ||
}, | ||
"git": { | ||
"tagName": "v${version}" | ||
}, | ||
"hooks": { | ||
"before:init": [ | ||
"npm run test" | ||
] | ||
}, | ||
"npm": { | ||
"publish": true | ||
} | ||
}, | ||
"pre-commit": [ | ||
"test" | ||
], | ||
"engines": { | ||
"node": ">=20" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/moscajs/aedes-cached-persistence.git" | ||
}, | ||
"keywords": [ | ||
"aedes", | ||
"persistence", | ||
"cache", | ||
"in-memory" | ||
], | ||
"author": "Matteo Collina <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/moscajs/aedes-cached-persistence/issues" | ||
}, | ||
"homepage": "https://github.com/moscajs/aedes-cached-persistence#readme", | ||
"devDependencies": { | ||
"aedes": "^0.51.3", | ||
"eslint": "^9.21.0", | ||
"license-checker": "^25.0.1", | ||
"neostandard": "^0.12.1", | ||
"nyc": "^17.1.0", | ||
"release-it": "^18.1.2", | ||
"tsd": "^0.31.2" | ||
}, | ||
"dependencies": { | ||
"aedes-persistence": "^10.0.0", | ||
"fastparallel": "^2.4.1", | ||
"multistream": "^4.1.0", | ||
"qlobber": "^8.0.1" | ||
} | ||
} |
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
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
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