Skip to content

Commit dd64eea

Browse files
committed
Update all dependencies
1 parent c36df69 commit dd64eea

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

package.json

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,22 +59,27 @@
5959
],
6060
"@typescript-eslint/no-explicit-any": 0,
6161
"@typescript-eslint/explicit-function-return-type": 0,
62+
"@typescript-eslint/explicit-module-boundary-types": 0,
6263
"@typescript-eslint/no-empty-function": 0
6364
}
6465
},
6566
"devDependencies": {
66-
"@typescript-eslint/eslint-plugin": "^2.34.0",
67-
"@typescript-eslint/parser": "^2.34.0",
68-
"chai": "^3.5.0",
67+
"@types/chai": "^4.2.11",
68+
"@types/mocha": "^7.0.2",
69+
"@types/sinon": "^9.0.4",
70+
"@types/sinon-chai": "^3.2.4",
71+
"@typescript-eslint/eslint-plugin": "^3.0.1",
72+
"@typescript-eslint/parser": "^3.0.1",
73+
"chai": "^4.2.0",
6974
"documentation": "^13.0.0",
70-
"eslint": "^6.5.1",
75+
"eslint": "^7.1.0",
7176
"esm": "^3.2.25",
7277
"microbundle": "^0.12.0",
73-
"mocha": "^3.2.0",
74-
"npm-run-all": "^2.1.1",
75-
"rimraf": "^2.5.2",
76-
"sinon": "^1.17.4",
77-
"sinon-chai": "^2.8.0",
78+
"mocha": "^7.2.0",
79+
"npm-run-all": "^4.1.5",
80+
"rimraf": "^3.0.2",
81+
"sinon": "^9.0.2",
82+
"sinon-chai": "^3.5.0",
7883
"ts-node": "^8.10.1",
7984
"typescript": "^3.9.3"
8085
}

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ describe('mitt#', () => {
159159

160160
inst.emit('foo', ea);
161161
expect(star).to.have.been.calledOnce.and.calledWith('foo', ea);
162-
star.reset();
162+
star.resetHistory();
163163

164164
inst.emit('bar', eb);
165165
expect(star).to.have.been.calledOnce.and.calledWith('bar', eb);

0 commit comments

Comments
 (0)