Skip to content

Commit

Permalink
chore: install correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Apr 19, 2023
1 parent 31aa8bf commit 93d2b8c
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 41 deletions.
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
. "$(dirname -- "$0")/_/husky.sh"

npx --no -- commitlint --edit
npx --no -- commitlint --edit
2 changes: 1 addition & 1 deletion bin/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { processCliArgs, configure, run } from '@japa/runner'
configure({
...processCliArgs(process.argv.slice(2)),
...{
files: ['test/**/*.spec.ts'],
files: ['tests/**/*.spec.ts'],
plugins: [assert(), runFailedTests()],
reporters: [specReporter()],
importer: (filePath) => {
Expand Down
62 changes: 22 additions & 40 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"scripts": {
"pretest": "npm run lint",
"test": "c8 npm run vscode:test",
"test": "c8 npm run quick:test",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
Expand All @@ -28,7 +28,7 @@
"format": "prettier --write .",
"release": "np",
"version": "npm run build",
"vscode:test": "node --loader=ts-node/esm bin/test.js",
"quick:test": "node --loader=ts-node/esm bin/test.ts",
"sync-labels": "github-label-sync --labels .github/labels.json dimerapp/markdown"
},
"repository": {
Expand All @@ -48,45 +48,27 @@
},
"homepage": "https://github.com/dimerapp/markdown#readme",
"devDependencies": {
"@adonisjs/mrm-preset": "^3.0.0",
"@adonisjs/require-ts": "^2.0.3",
"@types/node": "^14.14.37",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"doctoc": "^2.0.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-adonis": "^1.3.0",
"eslint-plugin-prettier": "^3.3.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@japa/assert": "^1.4.1",
"@japa/run-failed-tests": "^1.1.1",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"@swc/core": "^1.3.51",
"@types/node": "^18.15.11",
"c8": "^7.13.0",
"del-cli": "^5.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-adonis": "^3.0.3",
"eslint-plugin-prettier": "^4.2.1",
"github-label-sync": "^2.0.0",
"husky": "^5.2.0",
"japa": "^3.1.1",
"mrm": "^2.6.1",
"np": "^7.4.0",
"npm-audit-html": "^1.5.0",
"prettier": "^2.2.1",
"ts-dedent": "^2.1.0",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "npm audit --production --json | ./node_modules/.bin/npm-audit-html && git add npm-audit.html && doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
"husky": "^8.0.3",
"np": "^7.7.0",
"prettier": "^2.8.7",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"front-matter": "^4.0.2",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 93d2b8c

Please sign in to comment.