mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "@verdaccio/commons-api",
|
||
|
"version": "10.0.0-beta",
|
||
|
"description": "Commons API utilities for Verdaccio",
|
||
|
"keywords": [
|
||
|
"http",
|
||
|
"verdaccio",
|
||
|
"api"
|
||
|
],
|
||
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
||
|
"license": "MIT",
|
||
|
"homepage": "https://verdaccio.org",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/verdaccio/monorepo",
|
||
|
"directory": "core/commons-api"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/verdaccio/monorepo/issues"
|
||
|
},
|
||
|
"publishConfig": {
|
||
|
"access": "public"
|
||
|
},
|
||
|
"main": "build/index.js",
|
||
|
"types": "build/index.d.ts",
|
||
|
"files": [
|
||
|
"build"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">=10"
|
||
|
},
|
||
|
"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",
|
||
|
"type-check": "tsc --noEmit",
|
||
|
"build:types": "tsc --emitDeclarationOnly --declaration true",
|
||
|
"build:js": "cross-env 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"
|
||
|
}
|
||
|
}
|