Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Resolve CVE-2024-21538

* Resolve CVE-2024-21538
  • Loading branch information
rocketstack-matt committed Dec 5, 2024
1 parent 51f3de4 commit b738de3
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 19 deletions.
6 changes: 3 additions & 3 deletions cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 44 additions & 16 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,43 +4,71 @@
"description": "A set of tools for interacting with the Common Architecture Language Model (CALM)",
"main": "dist/index.js",
"files": [
"dist/"
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc -watch -p ./",
"clean": "rimraf node_modules dist",
"build": "tsc && npm run copy-calm-schema && npm run copy-spectral-rules",
"test": "jest --verbose",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"copy-calm-schema": "mkdir -p dist/calm && cp -r ../calm/draft/2024-04/meta dist/calm/",
"copy-spectral-rules": "mkdir -p dist/spectral && npm run copy-spectral-instantiation-rules && npm run copy-spectral-pattern-rules",
"copy-spectral-instantiation-rules": "cp -r ../spectral/instantiation dist/spectral",
"copy-spectral-pattern-rules": "cp -r ../spectral/pattern dist/spectral",
"dependency-check": "dependency-check --project 'calm-cli' --scan . --out ./dependency-check-report --format ALL --suppression ../.github/node-cve-ignore-list.xml"

},
"bin": {
"calm": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"validation"
],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@finos/calm-shared": "file:../shared",
"copyfiles": "^2.4.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@stoplight/spectral-cli": "^6.13.1",
"@stoplight/spectral-core": "^1.19.1",
"ajv": "^8.12.0",
"commander": "^12.0.0",
"glob": "^11.0.0",
"graphviz-cli": "^2.0.0",
"js-yaml": "^4.1.0",
"json-pointer": "^0.6.2",
"jsonpath-plus": "^10.0.0",
"junit-report-builder": "^5.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"commander": "^12.0.0"
"ts-graphviz": "^2.1.1",
"tsconfig-paths": "^4.2.0",
"winston": "^3.14.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/json-pointer": "^1.0.34",
"@types/junit-report-builder": "^3.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint": "^9.13.0",
"eslint-config-love": "^97.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-promise": "^7.1.0",
"fetch-mock": "^9.11.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"overrides": {
"jsonpath-plus": "^10.0.0",
"path-to-regexp": "3.3.0",
"rollup": "4.24.4",
"glob": "^11.0.0",
"cross-spawn": "^7.0.5"
}
}

0 comments on commit b738de3

Please sign in to comment.