mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "verdaccio-audit",
|
|
"version": "10.0.0-beta",
|
|
"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": "https",
|
|
"url": "https://github.com/verdaccio/verdaccio",
|
|
"directory": "packages/plugins/audit"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/verdaccio/verdaccio/issues"
|
|
},
|
|
"main": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"dependencies": {
|
|
"express": "^4.17.1",
|
|
"https-proxy-agent": "^5.0.0",
|
|
"node-fetch": "^2.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@verdaccio/types": "workspace:*",
|
|
"nock": "^12.0.3",
|
|
"body-parser": "^1.19.0",
|
|
"supertest": "^4.0.2"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./build",
|
|
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
|
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
|
"build:js": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
|
"build": "pnpm run build:js && pnpm run build:types",
|
|
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest"
|
|
},
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/verdaccio"
|
|
}
|
|
}
|