2020-08-19 20:27:35 +02:00
|
|
|
{
|
|
|
|
"name": "@verdaccio/local-storage",
|
|
|
|
"version": "10.0.0-beta",
|
|
|
|
"description": "Local storage implementation",
|
|
|
|
"keywords": [
|
|
|
|
"plugin",
|
|
|
|
"verdaccio",
|
|
|
|
"storage",
|
|
|
|
"local-storage"
|
|
|
|
],
|
|
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"homepage": "https://verdaccio.org",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/verdaccio/monorepo",
|
|
|
|
"directory": "plugins/local-storage"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/verdaccio/monorepo/issues"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"main": "./build/index.js",
|
|
|
|
"types": "./build/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"build/"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-19 22:02:40 +02:00
|
|
|
"@verdaccio/commons-api": "workspace:*",
|
2020-08-19 20:27:35 +02:00
|
|
|
"@verdaccio/file-locking": "workspace:*",
|
|
|
|
"@verdaccio/streams": "workspace:*",
|
|
|
|
"async": "^3.2.0",
|
|
|
|
"level": "5.0.1",
|
|
|
|
"lodash": "^4.17.19",
|
2020-08-21 07:51:12 +02:00
|
|
|
"mkdirp": "^0.5.5",
|
|
|
|
"debug": "^4.1.1"
|
2020-08-19 20:27:35 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/minimatch": "^3.0.3",
|
|
|
|
"@verdaccio/types": "workspace:*",
|
|
|
|
"minimatch": "^3.0.4",
|
|
|
|
"rmdir-sync": "^1.0.1"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf ./build",
|
|
|
|
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
"build:types": "tsc --emitDeclarationOnly --declaration true",
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|