senecajs/seneca-mem-store

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "seneca-mem-store",
  "version": "9.0.0",
  "description": "Seneca in-memory data storage plugin.",
  "main": "dist/mem-store.js",
  "type": "commonjs",
  "types": "dist/mem-store.d.ts",
  "license": "MIT",
  "author": "Richard Rodger (http://richardrodger.com)",
  "contributors": [
    "Richard Rodger (http://richardrodger.com)",
    "Nicolas Herment (https://github.com/nherment)",
    "Dean McDonnell (https://github.com/mcdonnelldean)",
    "Maxence Dalmais (https://github.com/maxired)",
    "Mihai Dima (https://github.com/mihaidma)",
    "Wyatt Preul (https://github.com/geek)",
    "Paolo Chiodi (https://github.com/paolochiodi)",
    "Shane Lacey (https://github.com/shanel262)",
    "Oisín Hennessy (https://github.com/code-jace)",
    "Efim Bogdanovsky (https://github.com/lilsweetcaligula)"
  ],
  "scripts": {
    "build": "tsc -d",
    "watch": "tsc -w -d",
    "test": "node --enable-source-maps --test",
    "test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test test",
    
    "test-lab": "lab -v -P test -L -t 90 -r console -o stdout -r html -o test/coverage.html -r lcov -o test/lcov.info --sourcemaps --transform node_modules/lab-transform-typescript",
    "test-lab-some": "lab -v -P test --sourcemaps --transform node_modules/lab-transform-typescript -g",
    "prettier": "prettier --write --no-semi --single-quote src/**/*.ts test/*.js",
    "reset": "npm run clean && npm i && npm run build && npm test",
    "clean": "rm -rf node_modules dist package-lock.json yarn.lock",
    "repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
    "repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run repo-publish-quick",
    "repo-publish-quick": "npm run prettier && npm run build && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/senecajs/seneca-mem-store"
  },
  "keywords": [
    "seneca",
    "plugin",
    "store",
    "mem",
    "memory"
  ],
  "peerDependencies": {
    "seneca": ">=3",
    "seneca-entity": ">=26"
  },
  "devDependencies": {
    "@hapi/code": "9.0.3",
    "@hapi/lab": "25.2.0",
    "async": "3.2.5",
    "lab-transform-typescript": "3.0.1",
    "prettier": "3.3.1",
    "seneca-plugin-validator": "0.6.1",
    "seneca-promisify": "3.7.1",
    "seneca-store-test": "5.2.0",
    "typescript": "5.4.5"
  },
  "files": [
    "README.md",
    "CHANGES.md",
    "LICENSE",
    "src",
    "dist"
  ],
  "dependencies": {
    "gubu": "^7.1.0"
  }
}