mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
34 lines
1.2 KiB
JSON
34 lines
1.2 KiB
JSON
{
|
|
"name": "@verdaccio/test-helper",
|
|
"version": "4.0.0-next-8.1",
|
|
"private": true,
|
|
"description": "test helpers",
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://verdaccio.org",
|
|
"main": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"devDependencies": {
|
|
"@verdaccio/auth": "workspace:8.0.0-next-8.4",
|
|
"@verdaccio/config": "workspace:8.0.0-next-8.4",
|
|
"@verdaccio/core": "workspace:8.0.0-next-8.4",
|
|
"@verdaccio/logger": "workspace:8.0.0-next-8.4",
|
|
"@verdaccio/middleware": "workspace:8.0.0-next-8.4",
|
|
"@verdaccio/types": "workspace:13.0.0-next-8.1",
|
|
"@verdaccio/utils": "workspace:8.1.0-next-8.4",
|
|
"body-parser": "1.20.3",
|
|
"debug": "4.3.7",
|
|
"express": "4.21.1",
|
|
"fs-extra": "11.2.0",
|
|
"supertest": "7.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"clean": "rimraf ./build",
|
|
"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"
|
|
}
|
|
}
|