Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

[Snyk] Fix for 1 vulnerabilities #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.25.0
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
'npm:ms:20170412':
- karma > connect > debug > ms:
patched: '2022-08-23T05:41:07.631Z'
92 changes: 49 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,51 @@
{
"name": "bugsnag-js",
"description": "Automatically detect JavaScript errors on your websites, collect detailed diagnostic information, and get notified about errors in real-time.",
"keywords": [
"exception",
"bugsnag",
"error",
"JavaScript",
"browsers",
"monitoring",
"reporting",
"client-side"
],
"version": "3.2.0",
"license": "MIT",
"main": "src/bugsnag.js",
"types": "src/bugsnag.d.ts",
"scripts": {
"lint": "grunt eslint",
"test": "karma start --single-run",
"test:watch": "karma start --browsers PhantomJS",
"test:quick": "karma start --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
"url": "https://github.com/bugsnag/bugsnag-js"
},
"devDependencies": {
"eslint": "^3.4.0",
"grunt": "~0.4.2",
"grunt-bumpx": "~0.1.0",
"grunt-contrib-watch": "~0.5.2",
"grunt-docco": "~0.4.0",
"grunt-invalidate-cloudfront": "~0.1.4",
"grunt-regex-replace": "~0.2.5",
"grunt-s3": "git://github.com/pifantastic/grunt-s3",
"gruntify-eslint": "^1.3.0",
"karma": "~1.3.0",
"karma-mocha-ie-legacy": "file:./test/karma-mocha",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sauce-launcher": "^1.0.0",
"mocha": "~1.15.1",
"uglifyjs": "latest"
}
"name": "bugsnag-js",
"description": "Automatically detect JavaScript errors on your websites, collect detailed diagnostic information, and get notified about errors in real-time.",
"keywords": [
"exception",
"bugsnag",
"error",
"JavaScript",
"browsers",
"monitoring",
"reporting",
"client-side"
],
"version": "3.2.0",
"license": "MIT",
"main": "src/bugsnag.js",
"types": "src/bugsnag.d.ts",
"scripts": {
"lint": "grunt eslint",
"test": "karma start --single-run",
"test:watch": "karma start --browsers PhantomJS",
"test:quick": "karma start --single-run --browsers PhantomJS",
"prepare": "yarn run snyk-protect",
"snyk-protect": "snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/bugsnag/bugsnag-js"
},
"devDependencies": {
"eslint": "^3.4.0",
"grunt": "~0.4.2",
"grunt-bumpx": "~0.1.0",
"grunt-contrib-watch": "~0.5.2",
"grunt-docco": "~0.4.0",
"grunt-invalidate-cloudfront": "~0.1.4",
"grunt-regex-replace": "~0.2.5",
"grunt-s3": "git://github.com/pifantastic/grunt-s3",
"gruntify-eslint": "^1.3.0",
"karma": "~1.3.0",
"karma-mocha-ie-legacy": "file:./test/karma-mocha",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sauce-launcher": "^1.0.0",
"mocha": "~1.15.1",
"uglifyjs": "latest"
},
"snyk": true,
"dependencies": {
"@snyk/protect": "latest"
}
}