Skip to content

Commit

Permalink
chore: update dependencies and replace nyc with c8 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Oct 12, 2022
1 parent 33481da commit 0df4b14
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -3,4 +3,4 @@ node_modules/
tmp/
*.log
.idea/
.nyc_output/
coverage/
14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
Expand All @@ -25,15 +25,15 @@
"author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"hexo": "^6.0.0",
"mocha": "^10.0.0",
"eslint": "^8.6.0",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-hexo": "^5.0.0",
"nyc": "^15.0.0"
"hexo": "^6.3.0",
"mocha": "^10.0.0"
},
"dependencies": {
"hexo-pagination": "2.0.0"
"hexo-pagination": "3.0.0"
},
"engines": {
"node": ">=14"
Expand Down

0 comments on commit 0df4b14

Please sign in to comment.