From 270d629417446ef80e56db878cf926c3b0b71ab6 Mon Sep 17 00:00:00 2001 From: Matias Simonetto Date: Sat, 13 Jul 2024 14:18:25 +0000 Subject: [PATCH] restore lerna.json and package.json --- lerna.json | 4 ++++ package.json | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 lerna.json create mode 100644 package.json diff --git a/lerna.json b/lerna.json new file mode 100644 index 0000000..2f89687 --- /dev/null +++ b/lerna.json @@ -0,0 +1,4 @@ +{ + "packages": ["packages/*"], + "version": "1.0.0" +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..1765eb9 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "mocha-examples", + "version": "1.0.0", + "description": "A set of examples to help demonstrate common configurations using Mocha. They should all run out-the-box.", + "main": "index.js", + "scripts": { + "postinstall": "lerna bootstrap --no-ci && npm run clean:packagelock", + "test": "lerna run --stream test", + "clean": "lerna clean", + "postclean": "npm run clean:packagelock", + "clean:packagelock": "rimraf -g **/package-lock.json" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/mochajs/mocha-examples.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/mochajs/mocha-examples/issues" + }, + "homepage": "https://github.com/mochajs/mocha-examples#readme", + "devDependencies": { + "lerna": "^5.0.0", + "rimraf": "^3.0.2" + } +} \ No newline at end of file