Adding the ability to use catch-all listeners

This commit is contained in:
Jonathan Putney
2020-05-25 17:06:51 -04:00
parent db1477fedc
commit f791aeec7b
8 changed files with 80 additions and 31 deletions

View File

@@ -27,6 +27,7 @@
"grunt": "^1.1.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"jsdoc": "^3.6.4",
"jsdoc-babel": "^0.5.0",
@@ -38,7 +39,9 @@
"nyc": "^15.0.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register --bdd --recursive --reporter list"
"test": "./node_modules/.bin/mocha --require @babel/register --bdd --recursive --reporter list",
"compile": "./node_modules/.bin/grunt default",
"fix": "./node_modules/.bin/eslint ./src --fix"
},
"repository": {
"type": "git",
@@ -55,5 +58,7 @@
"url": "https://github.com/jcputney/scorm-again/issues"
},
"homepage": "https://github.com/jcputney/scorm-again",
"dependencies": {}
"dependencies": {
"@types/mocha": "^7.0.2"
}
}