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

52 lines
1.6 KiB
JSON
Raw Normal View History

2020-03-03 23:59:19 +01:00
{
"name": "@verdaccio/api",
"version": "5.0.0-alpha.0",
"description": "loaders logic",
"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",
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly --declaration true",
"build:js": "cross-env BABEL_ENV=registry babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
"build": "pnpm run build:js && pnpm run build:types"
2020-03-03 23:59:19 +01:00
},
"license": "MIT",
"dependencies": {
"@verdaccio/auth": "5.0.0-alpha.0",
"@verdaccio/commons-api": "workspace:*",
2020-03-03 23:59:19 +01:00
"@verdaccio/dev-commons": "5.0.0-alpha.0",
"@verdaccio/hooks": "5.0.0-alpha.0",
"@verdaccio/logger": "5.0.0-alpha.0",
"@verdaccio/middleware": "5.0.0-alpha.0",
"@verdaccio/store": "5.0.0-alpha.0",
2020-03-03 23:59:19 +01:00
"@verdaccio/utils": "5.0.0-alpha.0",
"debug": "^4.1.1",
"cookies": "0.8.0",
2020-03-03 23:59:19 +01:00
"express": "4.17.1",
"semver": "7.3.2",
"lodash": "^4.17.15",
"mime": "2.4.4"
2020-03-03 23:59:19 +01:00
},
"devDependencies": {
"@verdaccio/config": "5.0.0-alpha.0",
"@verdaccio/server": "5.0.0-alpha.0",
2020-03-03 23:59:19 +01:00
"@verdaccio/dev-types": "5.0.0-alpha.0",
"@verdaccio/types": "workspace:*",
2020-07-03 23:38:49 +02:00
"body-parser": "1.19.0",
"lodash": "^4.17.20",
"supertest": "next"
2020-03-03 23:59:19 +01:00
},
"gitHead": "7c246ede52ff717707fcae66dd63fc4abd536982"
}