UNPKG

verdaccio-mongodb

Version:
56 lines (55 loc) 1.52 kB
{ "name": "verdaccio-mongodb", "version": "1.2.0", "description": "MongoDB Authentication plugin for Verdaccio", "author": "Jörg Rech <joerg.rech@gmail.com>", "license": "MIT", "repository": "joergrech/verdaccio-mongodb", "keywords": [ "Authentication", "Auth", "Plugin", "Verdaccio", "MongoDB", "DocumentDB" ], "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/" ], "engines": { "node": ">=10" }, "dependencies": { "@verdaccio/commons-api": "^10.2.0", "bcryptjs": "^2.4.3", "lru-cache": "^7.10.1", "mongodb": "^4.6.0" }, "devDependencies": { "@types/express": "^4.17.13", "@types/jest": "^28.1.1", "@types/node": "^16.0.0", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", "@verdaccio/babel-preset": "^10.0.0", "@verdaccio/eslint-config": "^10.0.0", "@verdaccio/types": "^10.4.2", "eslint": "^7.32.0", "eslint-plugin-import": "^2.26.0", "jest": "^28.1.0", "prettier": "^2.6.2", "standard-version": "^9.5.0", "typescript": "^4.7.3" }, "scripts": { "release": "standard-version -a -s", "build": "npm run build:types && npm run build:js", "build:js": "babel src/ --out-dir lib --extensions \".js,.ts,.tsx\"", "build:types": "tsc --emitDeclarationOnly", "test": "jest", "lint": "eslint \"**/*.{js,ts}\"", "buildall": "npm run lint && npm run test && npm run build:types && npm run build:js" } }