mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "@verdaccio/commons-api",
|
|
"version": "11.0.0-alpha.3",
|
|
"description": "Commons API utilities for Verdaccio",
|
|
"keywords": [
|
|
"private",
|
|
"package",
|
|
"repository",
|
|
"registry",
|
|
"enterprise",
|
|
"modules",
|
|
"proxy",
|
|
"server",
|
|
"verdaccio"
|
|
],
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://verdaccio.org",
|
|
"repository": {
|
|
"type": "https",
|
|
"url": "https://github.com/verdaccio/verdaccio",
|
|
"directory": "packages/core/commons-api"
|
|
},
|
|
"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",
|
|
"npm": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"http-errors": "^1.8.0",
|
|
"http-status-codes": "^1.4.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./build",
|
|
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
|
|
"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"
|
|
}
|
|
}
|