@verdaccio/local-storage 10.1.0 → 10.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/local-storage",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "Local storage implementation",
5
5
  "keywords": [
6
6
  "plugin",
@@ -34,7 +34,7 @@
34
34
  "@verdaccio/commons-api": "10.1.0",
35
35
  "@verdaccio/file-locking": "10.1.0",
36
36
  "@verdaccio/streams": "10.1.0",
37
- "async": "3.2.2",
37
+ "async": "3.2.3",
38
38
  "debug": "4.3.3",
39
39
  "lodash": "4.17.21",
40
40
  "lowdb": "1.0.0",
@@ -43,7 +43,7 @@
43
43
  "devDependencies": {
44
44
  "@types/minimatch": "^3.0.3",
45
45
  "@types/node": "^14.0.0",
46
- "@verdaccio/types": "10.1.0",
46
+ "@verdaccio/types": "10.2.2",
47
47
  "minimatch": "^3.0.4",
48
48
  "rmdir-sync": "^1.0.1"
49
49
  },
@@ -59,5 +59,6 @@
59
59
  "build:js": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\" --source-maps",
60
60
  "watch": "pnpm build:js -- --watch",
61
61
  "build": "pnpm run build:js && pnpm run build:types"
62
- }
62
+ },
63
+ "readme": "# @verdaccio/local-storage\n\nšŸ“¦ File system storage plugin for verdaccio \n\n[![verdaccio (latest)](https://img.shields.io/npm/v/@verdaccio/local-storage/latest.svg)](https://www.npmjs.com/package/@verdaccio/local-storage)\n[![CircleCI](https://circleci.com/gh/verdaccio/local-storage/tree/master.svg?style=svg)](https://circleci.com/gh/verdaccio/local-storage/tree/master)\n[![Known Vulnerabilities](https://snyk.io/test/github/verdaccio/local-storage/badge.svg?targetFile=package.json)](https://snyk.io/test/github/verdaccio/local-storage?targetFile=package.json)\n[![codecov](https://codecov.io/gh/verdaccio/local-storage/branch/master/graph/badge.svg)](https://codecov.io/gh/verdaccio/local-storage)\n[![backers](https://opencollective.com/verdaccio/tiers/backer/badge.svg?label=Backer&color=brightgreen)](https://opencollective.com/verdaccio)\n[![discord](https://img.shields.io/discord/388674437219745793.svg)](http://chat.verdaccio.org/)\n![MIT](https://img.shields.io/github/license/mashape/apistatus.svg)\n[![node](https://img.shields.io/node/v/@verdaccio/local-storage/latest.svg)](https://www.npmjs.com/package/@verdaccio/local-storage)\n\n> This package is already built-in in verdaccio\n\n```\nnpm install @verdaccio/local-storage\n```\n\n### API\n\n### LocalDatabase\n\nThe main object that handle a JSON database the private packages.\n\n#### Constructor\n\n```\nnew LocalDatabase(config, logger);\n```\n\n* **config**: A verdaccio configuration instance.\n* **logger**: A logger instance\n\n### LocalFS\n\nA class that handle an package instance in the File System\n\n```\nnew LocalFS(packageStoragePath, logger);\n```\n\n\n\n## License\nVerdaccio is [MIT licensed](https://github.com/verdaccio/local-storage/blob/master/LICENSE).\n\n\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fverdaccio%2Flocal-storage.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fverdaccio%2Flocal-storage?ref=badge_large)\n"
63
64
  }