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

41 lines
1.2 KiB
JSON
Raw Normal View History

2020-03-03 17:59:19 -05:00
{
"name": "@verdaccio/config",
"version": "5.0.0-alpha.1",
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": "git",
"url": "git://github.com/verdaccio/verdaccio"
},
"license": "MIT",
"homepage": "https://verdaccio.org",
"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"
},
2020-03-03 17:59:19 -05:00
"dependencies": {
"@verdaccio/commons-api": "workspace:10.0.0-alpha.1",
"@verdaccio/utils": "workspace:5.0.0-alpha.1",
"debug": "^4.2.0",
"js-yaml": "3.14.0",
"lodash": "^4.17.20",
2020-11-08 09:30:13 -05:00
"minimatch": "3.0.4",
"mkdirp": "0.5.5",
"yup": "^0.29.3"
},
"devDependencies": {
2020-11-08 09:30:13 -05:00
"@types/minimatch": "3.0.3",
"@types/yup": "^0.29.9"
}
2020-03-03 17:59:19 -05:00
}