mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
25 lines
766 B
JSON
25 lines
766 B
JSON
{
|
|
"name": "@verdaccio/helper",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"devDependencies": {
|
|
"@verdaccio/types": "workspace:11.0.0-6-next.10"
|
|
},
|
|
"scripts": {
|
|
"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"
|
|
}
|
|
}
|