Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ coverage
# npm
node_modules
npm-debug.log
package-lock.json

# yarn
yarn.lock
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

6 changes: 6 additions & 0 deletions .nsprc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"1002373": {
"active": true,
"notes": "Withdrawn and marked as invalid see: https://github.com/advisories/GHSA-8p5q-j9m2-g8wr"
}
}
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
"node": ">=6"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest to update the minimum node 6 engine to 12 for mocha minimum supported version on version 9.

},
"scripts": {
"test": "mocha"
"test": "mocha",
"better-audit": "better-npm-audit audit"
},
"dependencies": {
"get-value": "^3.0.1",
"set-value": "^3.0.0"
"set-value": "^4.0.1"
},
"keywords": [
"array",
Expand Down Expand Up @@ -61,7 +62,8 @@
}
},
"devDependencies": {
"better-npm-audit": "^3.3.0",
"gulp-format-md": "^2.0.0",
"mocha": "^6.1.4"
"mocha": "^9.1.2"
}
}