verdaccio-audit 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 +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verdaccio-audit",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "Verdaccio Middleware plugin to bypass npmjs audit",
5
5
  "keywords": [
6
6
  "verdaccio",
@@ -28,13 +28,13 @@
28
28
  "node": ">=8"
29
29
  },
30
30
  "dependencies": {
31
- "express": "4.17.1",
31
+ "express": "4.17.2",
32
32
  "https-proxy-agent": "5.0.0",
33
- "body-parser": "1.19.0",
34
- "node-fetch": "2.6.6"
33
+ "body-parser": "1.19.1",
34
+ "node-fetch": "2.6.7"
35
35
  },
36
36
  "devDependencies": {
37
- "@verdaccio/types": "10.1.0"
37
+ "@verdaccio/types": "10.2.2"
38
38
  },
39
39
  "funding": {
40
40
  "type": "opencollective",
@@ -48,5 +48,6 @@
48
48
  "build:js": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\" --source-maps",
49
49
  "watch": "pnpm build:js -- --watch",
50
50
  "build": "pnpm run build:js && pnpm run build:types"
51
- }
51
+ },
52
+ "readme": "# verdaccio-audit\nšŸ›”šŸ”¬ npmjs audit support for verdaccio\n\n[![verdaccio (latest)](https://img.shields.io/npm/v/verdaccio-audit/latest.svg)](https://www.npmjs.com/package/verdaccio-audit)\n[![Known Vulnerabilities](https://snyk.io/test/github/verdaccio/verdaccio-audit/badge.svg?targetFile=package.json)](https://snyk.io/test/github/verdaccio/verdaccio-audit?targetFile=package.json)\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-audit/latest.svg)](https://www.npmjs.com/package/verdaccio-audit)\n\n## Requirements\n\n* verdaccio@3.x or higher\n\n```\n npm install --global verdaccio-audit\n```\n\n## Usage\nTo enable it you need to add this to your configuration file.\n```yaml\nmiddlewares:\n audit:\n enabled: true\n strict_ssl: true # optional, defaults to true\n```\n\n### Strict SSL\n\nIn some scenarios it may be necessary to disable SSL certificate validation. Setting *strict_ssl* to false will disable these checks, but will make all connections passing through this plugin inherently insecure.\n\n## Disclaimer\n\nThis plugin is experimental and unstable. Please report any issue you found.\n\n## License\n\nMIT (http://www.opensource.org/licenses/mit-license.php)\n"
52
53
  }