mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"name": "@verdaccio/test-helper",
|
|
"version": "1.1.0-6-next.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/types": "workspace:11.0.0-6-next.12",
|
|
"@verdaccio/auth": "workspace:6.0.0-6-next.22",
|
|
"@verdaccio/core": "workspace:6.0.0-6-next.5",
|
|
"@verdaccio/config": "workspace:6.0.0-6-next.14",
|
|
"@verdaccio/middleware": "workspace:6.0.0-6-next.22",
|
|
"@verdaccio/utils": "workspace:6.0.0-6-next.11",
|
|
"body-parser": "1.19.1",
|
|
"express": "4.17.2",
|
|
"supertest": "6.2.2",
|
|
"debug": "4.3.4",
|
|
"fs-extra": "10.1.0"
|
|
},
|
|
"scripts": {
|
|
"test": "jest .",
|
|
"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"
|
|
}
|
|
}
|