Update dependencies to the most recent versions
There are two notable changes here: - `dommatrix` is a major version upgrade, but looking through the commit history of their `package.json` file at https://github.com/thednp/dommatrix/commits/master/package.json (due to the lack of a changelog) I couldn't find any breaking changes. - `es-module-shims` is a regular update, but it was previously pinned for causing intermittent breakage when running the unit tests in a browser manually. Fortunately this cannot be reproduced anymore with the most recent version, so we can also put the caret back now.
This commit is contained in:
parent
75ac897284
commit
dacd61fede
@ -2106,7 +2106,7 @@ function packageBowerJson() {
|
|||||||
bugs: DIST_BUGS_URL,
|
bugs: DIST_BUGS_URL,
|
||||||
license: DIST_LICENSE,
|
license: DIST_LICENSE,
|
||||||
dependencies: {
|
dependencies: {
|
||||||
dommatrix: "^0.0.24",
|
dommatrix: "^1.0.1",
|
||||||
"web-streams-polyfill": "^3.2.1",
|
"web-streams-polyfill": "^3.2.1",
|
||||||
},
|
},
|
||||||
peerDependencies: {
|
peerDependencies: {
|
||||||
|
881
package-lock.json
generated
881
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
32
package.json
32
package.json
@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
"name": "pdf.js",
|
"name": "pdf.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.17.9",
|
"@babel/core": "^7.17.10",
|
||||||
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
|
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
|
||||||
"@babel/plugin-transform-runtime": "^7.17.0",
|
"@babel/plugin-transform-runtime": "^7.17.10",
|
||||||
"@babel/preset-env": "^7.16.11",
|
"@babel/preset-env": "^7.17.10",
|
||||||
"@babel/runtime": "^7.17.9",
|
"@babel/runtime": "^7.17.9",
|
||||||
"@javascript-obfuscator/escodegen": "2.3.0",
|
"@javascript-obfuscator/escodegen": "2.3.0",
|
||||||
"acorn": "^8.7.0",
|
"acorn": "^8.7.1",
|
||||||
"autoprefixer": "^10.4.4",
|
"autoprefixer": "^10.4.5",
|
||||||
"babel-loader": "^8.2.4",
|
"babel-loader": "^8.2.5",
|
||||||
"caniuse-lite": "^1.0.30001332",
|
"caniuse-lite": "^1.0.30001334",
|
||||||
"canvas": "^2.9.1",
|
"canvas": "^2.9.1",
|
||||||
"core-js": "^3.22.0",
|
"core-js": "^3.22.3",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"dialog-polyfill": "^0.5.6",
|
"dialog-polyfill": "^0.5.6",
|
||||||
"dommatrix": "^0.0.24",
|
"dommatrix": "^1.0.1",
|
||||||
"es-module-shims": "1.4.7",
|
"es-module-shims": "^1.5.4",
|
||||||
"eslint": "^8.13.0",
|
"eslint": "^8.14.0",
|
||||||
"eslint-config-prettier": "^8.5.0",
|
"eslint-config-prettier": "^8.5.0",
|
||||||
"eslint-plugin-fetch-options": "^0.0.5",
|
"eslint-plugin-fetch-options": "^0.0.5",
|
||||||
"eslint-plugin-html": "^6.2.0",
|
"eslint-plugin-html": "^6.2.0",
|
||||||
@ -40,22 +40,22 @@
|
|||||||
"merge-stream": "^2.0.0",
|
"merge-stream": "^2.0.0",
|
||||||
"mkdirp": "^1.0.4",
|
"mkdirp": "^1.0.4",
|
||||||
"needle": "^3.1.0",
|
"needle": "^3.1.0",
|
||||||
"postcss": "^8.4.12",
|
"postcss": "^8.4.13",
|
||||||
"postcss-dir-pseudo-class": "^6.0.4",
|
"postcss-dir-pseudo-class": "^6.0.4",
|
||||||
"postcss-logical": "^5.0.4",
|
"postcss-logical": "^5.0.4",
|
||||||
"prettier": "^2.6.2",
|
"prettier": "^2.6.2",
|
||||||
"puppeteer": "^13.5.2",
|
"puppeteer": "^13.7.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"streamqueue": "^1.1.2",
|
"streamqueue": "^1.1.2",
|
||||||
"stylelint": "^14.7.0",
|
"stylelint": "^14.8.1",
|
||||||
"stylelint-config-prettier": "^9.0.3",
|
"stylelint-config-prettier": "^9.0.3",
|
||||||
"stylelint-prettier": "^2.0.0",
|
"stylelint-prettier": "^2.0.0",
|
||||||
"systemjs": "^0.21.6",
|
"systemjs": "^0.21.6",
|
||||||
"systemjs-plugin-babel": "^0.0.25",
|
"systemjs-plugin-babel": "^0.0.25",
|
||||||
"terser": "^5.12.1",
|
"terser": "^5.13.1",
|
||||||
"through2": "^4.0.2",
|
"through2": "^4.0.2",
|
||||||
"ttest": "^4.0.0",
|
"ttest": "^4.0.0",
|
||||||
"typescript": "^4.6.3",
|
"typescript": "^4.6.4",
|
||||||
"typogr": "^0.6.8",
|
"typogr": "^0.6.8",
|
||||||
"vinyl": "^2.2.1",
|
"vinyl": "^2.2.1",
|
||||||
"vinyl-fs": "^3.0.3",
|
"vinyl-fs": "^3.0.3",
|
||||||
|
Loading…
Reference in New Issue
Block a user