npq 3.5.0 → 3.5.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.
Files changed (2) hide show
  1. package/README.md +15 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,7 +28,6 @@ Media coverage about npq:
28
28
  - JavaScript January advent calendar's post on [Open Source From Heaven, Modules From Hell](https://www.lirantal.com/blog/2019-01-26)
29
29
  - Liran Tal's [Malicious Modules — what you need to know when installing npm packages](https://www.lirantal.com/blog/malicious-modules-what-you-need-to-know-when-installing-npm-packages-12b2f56d3685)
30
30
 
31
-
32
31
  ## About
33
32
 
34
33
  Once npq is installed, you can safely* install packages:
@@ -118,19 +117,23 @@ MARSHALL_DISABLE_SNYK=1 npq install express
118
117
  npq install express --dry-run
119
118
  ```
120
119
 
121
- ### Using with TravisCI
120
+ ## Learn Node.js Security
122
121
 
123
- An example of using lockfile-lint with a `.travis.yml` configuration as part of your build:
122
+ <div align="center">
124
123
 
125
- ```
126
- language: node_js
127
- before_script:
128
- - npx lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm
129
- install:
130
- - yarn install
131
- script:
132
- - yarn run test
133
- ```
124
+ <p>
125
+ <a href="https://nodejs-security.com">
126
+ <img alt="Node.js Security" align="center" src="https://img.shields.io/badge/%F0%9F%A6%84-Learn%20Node.js%20Security%E2%86%92-gray.svg?colorA=5734F5&colorB=5734F5&style=flat" />
127
+ </a>
128
+ </p>
129
+
130
+ ![Screenshot 2024-09-12 at 20 14 27](https://github.com/user-attachments/assets/586f3151-eed9-4542-92f1-de9237f6783c)
131
+
132
+ <p>
133
+ Learn Node.js Secure Coding techniques and best practices from <a href="https://www.lirantal.com">Liran Tal</a>
134
+ </p>
135
+
136
+ </div>
134
137
 
135
138
  ## FAQ
136
139
  1. **Can I use NPQ without having npm or yarn?**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npq",
3
- "version": "3.5.0",
3
+ "version": "3.5.2",
4
4
  "description": "marshall your npm/npm package installs with high quality and class 🎖",
5
5
  "bin": {
6
6
  "npq": "./bin/npq.js",