-
Reiter, Christoph authored
It's confusing that there are two lock files in this repo and two overlapping workspaces. Ideally everything should be in sync.
Reiter, Christoph authoredIt's confusing that there are two lock files in this repo and two overlapping workspaces. Ideally everything should be in sync.
This project manages its dependencies using npm.
Learn more
package.json 724 B
{
"name": "dbp-toolkit",
"version": "0.1.1",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*",
"toolkit-showcase"
],
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"version-patch": "lerna version patch",
"version-minor": "lerna version minor",
"version": "lerna version",
"yarn-install": "for d in ./packages/*/ ; do (cd \"$d\" && yarn install); done;",
"rm-dist": "for d in ./packages/*/ ; do (cd \"$d\" && rm dist -Rf); done;",
"lint": "lerna run lint",
"publish": "lerna publish from-package --yes"
},
"author": "",
"license": "LGPL-2.1-or-later",
"devDependencies": {
"lerna": "^4.0.0"
}
}