Skip to content

Commit

Permalink
Force micromatch update (#112)
Browse files Browse the repository at this point in the history
* Force micromatch recent resolution

This is a transitive dependency by way of Jest. Forcing the newer
version, our tests all still run and pass, so it works.

See micromatch/micromatch#264 for discussion
about how the CVE is bogus and has wasted thousands of hours of time.

* browserslist update
  • Loading branch information
skeet70 authored Aug 28, 2024
1 parent 9191e48 commit c5afd7f
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 690 deletions.
119 changes: 61 additions & 58 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,63 @@
{
"name": "@ironcorelabs/ironnode",
"version": "1.0.0",
"description": "IronCore Labs SDK for NodeJS Applications",
"homepage": "https://docs.ironcorelabs.com",
"main": "index.js",
"repository": "[email protected]:IronCoreLabs/ironnode.git",
"author": "IronCore Labs",
"license": "AGPL-3.0-only",
"types": "ironnode.d.ts",
"engines": {
"node": ">=12.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"start": "_ICL_API_DOMAIN_REPLACEMENT_=http://localhost:9090 ts-node -- ./integration/index.ts",
"build": "./build.js",
"test": "yarn run lint && yarn run unit",
"unit": "jest --coverage",
"lint": "tslint -p \"tsconfig.json\" -e \"**/tests/**\" \"src/**/*.ts\""
},
"dependencies": {
"@ironcorelabs/recrypt-node-binding": "^0.10.0",
"futurejs": "2.1.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.12.52",
"@types/node-fetch": "^2.5.7",
"inquirer": "^7.3.3",
"jest": "^26.1.0",
"jest-extended": "^0.11.5",
"jsonwebtoken": "^9.0.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.7",
"typestrict": "^1.0.2"
},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
"name": "@ironcorelabs/ironnode",
"version": "1.0.0",
"description": "IronCore Labs SDK for NodeJS Applications",
"homepage": "https://docs.ironcorelabs.com",
"main": "index.js",
"repository": "[email protected]:IronCoreLabs/ironnode.git",
"author": "IronCore Labs",
"license": "AGPL-3.0-only",
"types": "ironnode.d.ts",
"engines": {
"node": ">=12.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"start": "_ICL_API_DOMAIN_REPLACEMENT_=http://localhost:9090 ts-node -- ./integration/index.ts",
"build": "./build.js",
"test": "yarn run lint && yarn run unit",
"unit": "jest --coverage",
"lint": "tslint -p \"tsconfig.json\" -e \"**/tests/**\" \"src/**/*.ts\""
},
"dependencies": {
"@ironcorelabs/recrypt-node-binding": "^0.10.0",
"futurejs": "2.1.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.12.52",
"@types/node-fetch": "^2.5.7",
"inquirer": "^7.3.3",
"jest": "^26.1.0",
"jest-extended": "^0.11.5",
"jsonwebtoken": "^9.0.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.7",
"typestrict": "^1.0.2"
},
"resolutions": {
"micromatch": "^4.0.8"
},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
}
Loading

0 comments on commit c5afd7f

Please sign in to comment.