Skip to content

Commit c518421

Browse files
author
Benjamin E. Coe
authored
chore: update additional deps (#93)
1 parent d35bfd3 commit c518421

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.nycrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
],
99
"branches": 96.5,
1010
"lines": 100,
11-
"functions": 94,
11+
"functions": 93,
1212
"statements": 100
1313
}

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@
2222
"index.js"
2323
],
2424
"scripts": {
25-
"coverage": "nyc report && nyc check-coverage",
25+
"fix": "standard --fix",
26+
"coverage": "c8 --check-coverage report",
2627
"pretest": "standard",
27-
"test": "nyc mocha"
28+
"test": "c8 mocha"
2829
},
2930
"devDependencies": {
31+
"c8": "^7.3.0",
3032
"chai": "^4.0.1",
3133
"mocha": "^8.0.0",
32-
"nyc": "^15.1.0",
3334
"rimraf": "^3.0.2",
34-
"standard": "^10.0.0-beta.0"
35+
"standard": "^14.3.4"
3536
},
3637
"engines": {
3738
"node": ">=10"

test/y18n-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require('chai').should()
1111
describe('y18n', function () {
1212
describe('configure', function () {
1313
it('allows you to override the default y18n configuration', function () {
14-
var y = y18n({locale: 'fr'})
14+
var y = y18n({ locale: 'fr' })
1515
y.locale.should.equal('fr')
1616
})
1717
})

0 commit comments

Comments
 (0)