1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/core/htpasswd/package.json
Juan Picado 5f3eee5eaf chore: remove a package, move constants (#2001)
* chore: remove a package, move constants

* chore: remove *
2021-04-09 17:54:26 +02:00

54 lines
1.4 KiB
JSON

{
"name": "verdaccio-htpasswd",
"version": "10.0.0-beta",
"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/file-locking": "workspace:10.0.0-beta",
"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-beta"
},
"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",
"build": "pnpm run build:js && pnpm run build:types"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
}
}