verdaccio-audit
Version:
Verdaccio Middleware plugin to bypass npmjs audit
53 lines • 2.89 kB
JSON
{
"name": "verdaccio-audit",
"version": "10.2.4",
"description": "Verdaccio Middleware plugin to bypass npmjs audit",
"keywords": [
"verdaccio",
"plugin",
"middleware",
"audit"
],
"author": "Juan Picado <juanpicado19@gmail.com>",
"license": "MIT",
"homepage": "https://verdaccio.org",
"repository": {
"type": "git",
"url": "https://github.com/verdaccio/monorepo",
"directory": "plugins/audit"
},
"bugs": {
"url": "https://github.com/verdaccio/monorepo/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"express": "4.18.2",
"https-proxy-agent": "5.0.1",
"body-parser": "1.20.1",
"node-fetch": "2.6.8"
},
"devDependencies": {
"@verdaccio/types": "10.7.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
},
"scripts": {
"clean": "rimraf ./build",
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
"type-check": "tsc --noEmit -p tsconfig.build.json",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:js": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\" --source-maps",
"watch": "pnpm build:js -- --watch",
"build": "pnpm run build:js && pnpm run build:types"
},
"readme": "# verdaccio-audit\n🛡🔬 npmjs audit support for verdaccio\n\n[](https://www.npmjs.com/package/verdaccio-audit)\n[](https://snyk.io/test/github/verdaccio/verdaccio-audit?targetFile=package.json)\n[](https://opencollective.com/verdaccio)\n[](http://chat.verdaccio.org/)\n\n[](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"
}