0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/packages/config/package.json

58 lines
1.4 KiB
JSON
Raw Normal View History

2020-03-03 17:59:19 -05:00
{
"name": "@verdaccio/config",
"version": "7.0.0-next.2",
2020-03-03 17:59:19 -05:00
"description": "logger",
"main": "./build/index.js",
"types": "build/index.d.ts",
"author": {
"name": "Juan Picado",
"email": "juanpicado19@gmail.com"
},
"repository": {
"type": "https",
"url": "https://github.com/verdaccio/verdaccio"
2020-03-03 17:59:19 -05:00
},
"license": "MIT",
"homepage": "https://verdaccio.org",
"keywords": [
"private",
"package",
"repository",
"registry",
"enterprise",
"modules",
"proxy",
"server",
"verdaccio"
],
"engines": {
"node": ">=12"
},
2021-02-11 13:01:17 -05:00
"scripts": {
2020-03-03 17:59:19 -05:00
"clean": "rimraf ./build",
"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"
},
2020-03-03 17:59:19 -05:00
"dependencies": {
"@verdaccio/core": "workspace:7.0.0-next.2",
"@verdaccio/utils": "workspace:7.0.0-next.2",
"debug": "4.3.4",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"minimatch": "3.1.2",
"yup": "0.32.11"
},
"devDependencies": {
"@types/minimatch": "3.0.5",
"@types/yup": "0.29.14"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
}
2020-03-03 17:59:19 -05:00
}