0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/packages/core/local-storage/package.json
github-actions[bot] a78ff7550a chore: update versions (alpha) (#2045)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-04-09 17:54:32 +02:00

62 lines
1.7 KiB
JSON

{
"name": "@verdaccio/local-storage",
"version": "10.0.0-alpha.2",
"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/verdaccio",
"directory": "packages/core/local-storage"
},
"bugs": {
"url": "https://github.com/verdaccio/verdaccio/issues"
},
"publishConfig": {
"access": "public"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@verdaccio/commons-api": "workspace:10.0.0-alpha.1",
"@verdaccio/file-locking": "workspace:10.0.0-alpha.1",
"@verdaccio/streams": "workspace:10.0.0-alpha.1",
"async": "^3.2.0",
"debug": "^4.1.1",
"lodash": "^4.17.20",
"mkdirp": "^0.5.5",
"lowdb": "1.0.0"
},
"devDependencies": {
"@types/minimatch": "^3.0.3",
"@verdaccio/types": "workspace:10.0.0-alpha.1",
"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 -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",
"watch": "pnpm build:js -- --watch",
"build": "pnpm run build:js && pnpm run build:types"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
}
}