Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-07-27 22:26:09 +00:00
parent 3ba511a8f1
commit 1c4c64199f
175 changed files with 13227 additions and 15136 deletions

27
node_modules/nise/package.json generated vendored
View file

@ -1,6 +1,6 @@
{
"name": "nise",
"version": "4.0.3",
"version": "5.1.0",
"description": "Fake XHR and server",
"keywords": [
"test",
@ -19,7 +19,9 @@
"scripts": {
"bundle": "browserify --no-detect-globals -s nise -o nise.js lib/index.js",
"lint": "eslint .",
"prepublish": "npm run bundle",
"prettier:check": "prettier --check '**/*.{js,css,md}'",
"prettier:write": "prettier --write '**/*.{js,css,md}'",
"prepare": "npm run bundle",
"prepublishOnly": "mkdocs gh-deploy -r upstream || mkdocs gh-deploy -r origin",
"test": "mocha lib/**/*.test.js",
"test:coverage": "nyc --reporter=lcov --reporter=text --all npm test -- --reporter dot",
@ -43,17 +45,13 @@
"lib/**/*.js"
],
"devDependencies": {
"@sinonjs/referee": "^4.0.0",
"@sinonjs/eslint-config": "^4.0.0",
"@sinonjs/referee": "^5.0.0",
"browserify": "^16.2.3",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-sinon": "^3.0.1",
"eslint-plugin-ie11": "1.0.0",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jsdom": "^15.1.1",
"jsdom": "^16.2.0",
"jsdom-global": "3.0.2",
"lint-staged": "^10.5.3",
"mocha": "^7.0.1",
"mochify": "^6.6.0",
"nyc": "^15.0.0",
@ -65,15 +63,18 @@
},
"dependencies": {
"@sinonjs/commons": "^1.7.0",
"@sinonjs/fake-timers": "^6.0.0",
"@sinonjs/fake-timers": "^7.0.4",
"@sinonjs/text-encoding": "^0.7.1",
"just-extend": "^4.0.2",
"path-to-regexp": "^1.7.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --check",
"*.js": "eslint --quiet"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -- --fix && npm run test",
"pre-push": "npm run lint && npm run test"
"pre-commit": "lint-staged"
}
}
}