Skip to content

Commit

Permalink
restore lerna.json and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
matiassimon committed Jul 13, 2024
1 parent 4d77d76 commit e720653
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"packages": ["packages/*"],
"version": "1.0.0"
}
27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit e720653

Please sign in to comment.