2020-10-23 15:44:45 -05:00
|
|
|
{
|
|
|
|
"name": "verdaccio-auth-memory",
|
2024-01-07 04:02:08 -05:00
|
|
|
"version": "12.0.0-next.6",
|
2020-10-23 15:44:45 -05:00
|
|
|
"description": "Auth plugin for Verdaccio that keeps users in memory",
|
|
|
|
"keywords": [
|
2021-02-11 11:51:53 -05:00
|
|
|
"private",
|
|
|
|
"package",
|
|
|
|
"repository",
|
|
|
|
"registry",
|
|
|
|
"enterprise",
|
|
|
|
"modules",
|
|
|
|
"proxy",
|
|
|
|
"server",
|
|
|
|
"verdaccio"
|
2020-10-23 15:44:45 -05:00
|
|
|
],
|
|
|
|
"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",
|
2021-02-11 11:51:53 -05:00
|
|
|
"engines": {
|
2023-10-07 09:23:04 -05:00
|
|
|
"node": ">=18"
|
2021-02-11 11:51:53 -05:00
|
|
|
},
|
2020-10-23 15:44:45 -05:00
|
|
|
"dependencies": {
|
2024-01-07 04:02:08 -05:00
|
|
|
"@verdaccio/core": "workspace:7.0.0-next.6",
|
2023-04-12 01:23:01 -05:00
|
|
|
"debug": "4.3.4"
|
2020-10-23 15:44:45 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-02 09:13:30 -05:00
|
|
|
"@types/debug": "^4.1.12",
|
2024-01-07 04:02:08 -05:00
|
|
|
"@verdaccio/config": "workspace:7.0.0-next.6",
|
2023-12-31 08:54:02 -05:00
|
|
|
"@verdaccio/types": "workspace:12.0.0-next.2"
|
2020-10-23 15:44:45 -05:00
|
|
|
},
|
|
|
|
"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",
|
2020-12-22 15:16:11 -05:00
|
|
|
"watch": "pnpm build:js -- --watch",
|
2022-07-29 13:51:45 -05:00
|
|
|
"test": "jest"
|
2020-10-23 15:44:45 -05:00
|
|
|
},
|
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/verdaccio"
|
|
|
|
}
|
|
|
|
}
|