mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
fe60eab99c
* test: enable e2e * test: improve setup * chore: update setup * test: publish on temp folder * chore: initial setup example * chore: add global install to pnpm * chore: update test script * test: add info command * chore: add install tests * chore: add debug enabled code * chore: update pnpm lock file
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "@verdaccio/node-api",
|
|
"version": "5.0.0-alpha.1",
|
|
"description": "node API",
|
|
"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"
|
|
},
|
|
"homepage": "https://verdaccio.org",
|
|
"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",
|
|
"build": "pnpm run build:js && pnpm run build:types",
|
|
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@verdaccio/commons-api": "workspace:10.0.0-alpha.1",
|
|
"@verdaccio/config": "workspace:5.0.0-alpha.1",
|
|
"@verdaccio/logger": "workspace:5.0.0-alpha.1",
|
|
"@verdaccio/server": "workspace:5.0.0-alpha.1",
|
|
"core-js": "^3.6.5",
|
|
"debug": "^4.2.0",
|
|
"lodash": "^4.17.20",
|
|
"selfsigned": "1.10.7"
|
|
},
|
|
"devDependencies": {
|
|
"@verdaccio/mock": "workspace:5.0.0-alpha.1",
|
|
"@verdaccio/types": "workspace:10.0.0-alpha.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|