mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
1d78376506
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "verdaccio-htpasswd",
|
|
"version": "10.0.0-alpha.4",
|
|
"description": "htpasswd auth plugin for Verdaccio",
|
|
"keywords": [
|
|
"verdaccio",
|
|
"plugin",
|
|
"auth",
|
|
"htpasswd"
|
|
],
|
|
"author": "Ayush Sharma <ayush.aceit@gmail.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://verdaccio.org",
|
|
"repository": {
|
|
"type": "git",
|
|
"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": ">=10"
|
|
},
|
|
"dependencies": {
|
|
"@verdaccio/commons-api": "workspace:10.0.0-alpha.3",
|
|
"@verdaccio/file-locking": "workspace:10.0.0-alpha.3",
|
|
"apache-md5": "1.1.2",
|
|
"bcryptjs": "2.4.3",
|
|
"http-errors": "1.8.0",
|
|
"unix-crypt-td-js": "1.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.2",
|
|
"@verdaccio/types": "workspace:10.0.0-alpha.3"
|
|
},
|
|
"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 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"
|
|
}
|
|
}
|