Skip to content

Commit

Permalink
Fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelGirodon committed Nov 11, 2024
1 parent 01880df commit 7c94681
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@
"assets/**/*.html",
"src/**/*.js"
],
"main": "./src/cli.js",
"main": "src/cli.js",
"bin": {
"mdtodoc": "./src/cli.js"
"mdtodoc": "src/cli.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/GaelGirodon/markdown-to-document.git"
"url": "git+https://github.com/GaelGirodon/markdown-to-document.git"
},
"scripts": {
"build:assets": "node ./scripts/build.js",
"build:assets": "node scripts/build.js",
"format": "prettier --write \"**/*.{js,json,css}\"",
"format:check": "prettier --check \"**/*.{js,json,css}\"",
"lint": "eslint \"{assets,scripts,src,test}/**/*.js\" --ignore-pattern \"**/*.min.js\"",
"test": "mocha --timeout 30000",
"test:coverage": "c8 --reporter=html --reporter=text --all --include \"{assets,src}/**/*.js\" --exclude \"**/*.min.js\" mocha --timeout 30000",
"test:ci": "c8 --reporter=cobertura --all --include \"{assets,src}/**/*.js\" --exclude \"**/*.min.js\" mocha --reporter mocha-junit-reporter --timeout 30000 || exit 0",
"test:readme": "node ./scripts/test-readme.js"
"test:readme": "node scripts/test-readme.js"
},
"dependencies": {
"chokidar": "^4.0.1",
Expand Down

0 comments on commit 7c94681

Please sign in to comment.