@whittjs/better-npm-audit 3.12.1 → 3.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -23
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,23 +1,10 @@
|
|
|
1
1
|
# Better NPM Audit
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Forked from [jeemok/better-npm-audit](https://github.com/jeemok/better-npm-audit). This fork adds additional features and is actively maintained.
|
|
4
4
|
|
|
5
|
-
[](https://npmjs.org/package/better-npm-audit)
|
|
5
|
+
[](https://npmjs.org/package/@whittjs/better-npm-audit)
|
|
6
6
|
|
|
7
|
-
     
|
|
21
8
|
|
|
22
9
|
## NPM version 6 and 7, and 8
|
|
23
10
|
|
|
@@ -31,17 +18,17 @@ NPM has upgraded to version 7 in late 2020 and has breaking changes on the `npm
|
|
|
31
18
|
| Official NPM v7 audit docs | https://docs.npmjs.com/cli/v7/commands/npm-audit |
|
|
32
19
|
| Dealing with new npm audit | https://uko.codes/dealing-with-npm-v7-audit-changes |
|
|
33
20
|
|
|
34
|
-
You may find the sample JSON outputs for each NPM versions in our codebase: [v6](https://github.com/
|
|
21
|
+
You may find the sample JSON outputs for each NPM versions in our codebase: [v6](https://github.com/WhittJS/better-npm-audit/blob/master/test/__mocks__/v6-json-buffer.json), [v7](https://github.com/WhittJS/better-npm-audit/blob/master/test/__mocks__/v7-json-buffer.json) & [v8](https://github.com/WhittJS/better-npm-audit/blob/master/test/__mocks__/v8-json-buffer.json).
|
|
35
22
|
|
|
36
23
|
<br />
|
|
37
24
|
|
|
38
25
|
## Installation
|
|
39
26
|
|
|
40
|
-
$ npm install --save better-npm-audit
|
|
27
|
+
$ npm install --save @whittjs/better-npm-audit
|
|
41
28
|
|
|
42
29
|
or
|
|
43
30
|
|
|
44
|
-
$ npm install -g better-npm-audit
|
|
31
|
+
$ npm install -g @whittjs/better-npm-audit
|
|
45
32
|
|
|
46
33
|
<br />
|
|
47
34
|
|
|
@@ -165,7 +152,7 @@ When using a `.nsprc` file, a report will be displayed when it starts running:
|
|
|
165
152
|
|
|
166
153
|
## Changelog
|
|
167
154
|
|
|
168
|
-
You can find the changelog [here](https://github.com/
|
|
155
|
+
You can find the changelog [here](https://github.com/WhittJS/better-npm-audit/blob/master/CHANGELOG.md).
|
|
169
156
|
|
|
170
157
|
<br />
|
|
171
158
|
|
|
@@ -177,6 +164,4 @@ You can find the changelog [here](https://github.com/jeemok/better-npm-audit/blo
|
|
|
177
164
|
|
|
178
165
|
---
|
|
179
166
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
<a href="https://www.buymeacoffee.com/jeemok" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
|
|
167
|
+
Forked from [jeemok/better-npm-audit](https://github.com/jeemok/better-npm-audit). Original contributors listed above.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whittjs/better-npm-audit",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.2",
|
|
4
4
|
"author": "Jee Mok <jee.ict@hotmail.com>",
|
|
5
5
|
"description": "Reshape into a better npm audit for the community and encourage more people to include security audit into their process.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "https://github.com/WhittJS/better-npm-audit"
|
|
13
|
+
"url": "git+https://github.com/WhittJS/better-npm-audit.git"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">= 8.12"
|