0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/packages/utils/package.json

33 lines
952 B
JSON
Raw Normal View History

2020-03-03 17:59:19 -05:00
{
"name": "@verdaccio/utils",
"version": "5.0.0-alpha.1",
2020-03-03 17:59:19 -05:00
"description": "verdaccio utilities",
"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"
},
"license": "MIT",
"homepage": "https://verdaccio.org",
"dependencies": {
"@verdaccio/commons-api": "workspace:10.0.0-alpha.1",
"semver": "7.3.2"
2020-03-03 17:59:19 -05:00
},
"devDependencies": {
2020-08-27 14:23:56 -05:00
"lodash": "^4.17.20"
2020-03-03 17:59:19 -05:00
},
"scripts": {
"clean": "rimraf ./build",
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
"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"
}
2020-03-03 17:59:19 -05:00
}