1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/plugins/auth-memory/package.json
github-actions[bot] 57cb03cdb7 chore: update versions (alpha) (#1916)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-04-09 17:54:28 +02:00

43 lines
1.2 KiB
JSON

{
"name": "verdaccio-auth-memory",
"version": "10.0.0-alpha.1",
"description": "Auth plugin for Verdaccio that keeps users in memory",
"keywords": [
"verdaccio",
"plugin",
"auth",
"memory"
],
"author": "Juan Picado <juanpicado19@gmail.com>",
"license": "MIT",
"homepage": "https://verdaccio.org",
"repository": {
"type": "https",
"url": "https://github.com/verdaccio/verdaccio",
"directory": "packages/plugins/auth-memory"
},
"bugs": {
"url": "https://github.com/verdaccio/verdaccio/issues"
},
"main": "build/index.js",
"types": "build/src/index.d.ts",
"dependencies": {
"@verdaccio/commons-api": "workspace:10.0.0-alpha.1"
},
"devDependencies": {
"@verdaccio/types": "workspace:10.0.0-alpha.1"
},
"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"
}
}