0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/packages/plugins/htpasswd/package.json

65 lines
1.7 KiB
JSON

{
"name": "verdaccio-htpasswd",
"version": "12.0.0-next-7.20",
"description": "htpasswd auth plugin for Verdaccio",
"keywords": [
"private",
"package",
"repository",
"registry",
"enterprise",
"modules",
"proxy",
"server",
"verdaccio"
],
"author": "Ayush Sharma <ayush.aceit@gmail.com>",
"license": "MIT",
"homepage": "https://verdaccio.org",
"repository": {
"type": "https",
"url": "https://github.com/verdaccio/verdaccio",
"directory": "packages/core/htpasswd"
},
"bugs": {
"url": "https://github.com/verdaccio/verdaccio/issues"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"@verdaccio/core": "workspace:7.0.0-next-7.20",
"@verdaccio/file-locking": "workspace:12.0.0-next.1",
"apache-md5": "1.1.8",
"bcryptjs": "2.4.3",
"core-js": "3.37.1",
"http-errors": "2.0.0",
"debug": "4.3.6",
"unix-crypt-td-js": "1.1.4"
},
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@verdaccio/types": "workspace:12.0.0-next-7.5",
"@verdaccio/config": "workspace:7.0.0-next-7.20",
"@verdaccio/logger": "workspace:7.0.0-next-7.20",
"mockdate": "3.0.5"
},
"scripts": {
"clean": "rimraf ./build",
"test": "jest",
"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",
"watch": "pnpm build:js -- --watch",
"build": "pnpm run build:js && pnpm run build:types"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
}
}