preserves/implementations/javascript/package.json

25 lines
633 B
JSON

{
"name": "@preserves/root",
"private": true,
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "yarn workspaces run prepare",
"clean": "yarn workspaces run clean",
"veryclean": "yarn run veryclean:local && yarn workspaces run veryclean",
"veryclean:local": "rm -rf node_modules",
"build": "yarn workspaces run prepare",
"test": "yarn workspaces run test"
}
}