Skip to content

Commit

Permalink
chore: update additional deps (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Aug 5, 2020
1 parent d35bfd3 commit c518421
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
],
"branches": 96.5,
"lines": 100,
"functions": 94,
"functions": 93,
"statements": 100
}
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@
"index.js"
],
"scripts": {
"coverage": "nyc report && nyc check-coverage",
"fix": "standard --fix",
"coverage": "c8 --check-coverage report",
"pretest": "standard",
"test": "nyc mocha"
"test": "c8 mocha"
},
"devDependencies": {
"c8": "^7.3.0",
"chai": "^4.0.1",
"mocha": "^8.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"standard": "^10.0.0-beta.0"
"standard": "^14.3.4"
},
"engines": {
"node": ">=10"
Expand Down
2 changes: 1 addition & 1 deletion test/y18n-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require('chai').should()
describe('y18n', function () {
describe('configure', function () {
it('allows you to override the default y18n configuration', function () {
var y = y18n({locale: 'fr'})
var y = y18n({ locale: 'fr' })
y.locale.should.equal('fr')
})
})
Expand Down

0 comments on commit c518421

Please sign in to comment.