1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/utils/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2020-03-03 23:59:19 +01:00
{
"name": "@verdaccio/utils",
"version": "7.0.0-next-7.16",
2020-03-03 23:59:19 +01:00
"description": "verdaccio utilities",
"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 23:59:19 +01:00
},
"license": "MIT",
"homepage": "https://verdaccio.org",
"keywords": [
"private",
"package",
"repository",
"registry",
"enterprise",
"modules",
"proxy",
"server",
"verdaccio"
],
"engines": {
"node": ">=12"
},
2020-03-03 23:59:19 +01:00
"dependencies": {
"@verdaccio/core": "workspace:7.0.0-next-7.16",
"minimatch": "7.4.6",
"semver": "7.6.0",
"lodash": "4.17.21"
2020-03-03 23:59:19 +01:00
},
"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"
}
2020-03-03 23:59:19 +01:00
}