@isense-development/test-npm 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,12 +9,12 @@ Cheat Sheet: 6 Commands To Help You Update npm Packages
9
9
  This cheat sheet will make it easy to safely update npm packages in your node application. It includes a list of commands that will help you keep up with
10
10
  the latest updates and avoid breaking changes.
11
11
 
12
- * Use npm list --depth 0 to list all the packages in your package directory
13
- * Use npm audit to find out which of your npm dependencies are vulnerable.
14
- * Use npm outdated to list the packages that are out of date with respect to what is installed in package.json
15
- * Use npm update package_name to update an individual package that has already been installed.
16
- * Use npm uninstall package_name and npm install package_name@version to revert to a specific version.
17
- * Use npm cache clean --force to clear npm's cache of all the packages that have been installed.
12
+ * Use `npm list` --depth 0 to list all the packages in your package directory
13
+ * Use `npm audit` to find out which of your npm dependencies are vulnerable.
14
+ * Use `npm outdated` to list the packages that are out of date with respect to what is installed in package.json
15
+ * Use `npm update package_name` to update an individual package that has already been installed.
16
+ * Use `npm uninstall package_name` and npm install package_name@version to revert to a specific version.
17
+ * Use `npm cache clean --force` to clear npm's cache of all the packages that have been installed.
18
18
 
19
19
 
20
20
  ## copyfiles npm package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isense-development/test-npm",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "test npm",
5
5
  "main": "index.js",
6
6
  "scripts": {