npm-package-json-lint
Advanced tools
Comparing version 2.7.1 to 2.8.0
@@ -14,2 +14,6 @@ # Change Log | ||
## [2.8.0] - 2017-08-16 | ||
### Added | ||
- New rule: [prefer-property-order](https://github.com/tclindner/npm-package-json-lint/wiki/prefer-property-order) | ||
## [2.7.1] - 2017-08-15 | ||
@@ -16,0 +20,0 @@ ### Fixed |
{ | ||
"name": "npm-package-json-lint", | ||
"version": "2.7.1", | ||
"version": "2.8.0", | ||
"description": "CLI app for linting package.json files.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -26,3 +26,4 @@ 'use strict'; | ||
'no-restricted-pre-release-dependencies', | ||
'no-restricted-pre-release-devDependencies' | ||
'no-restricted-pre-release-devDependencies', | ||
'prefer-property-order' | ||
]; | ||
@@ -29,0 +30,0 @@ |
@@ -30,3 +30,3 @@ 'use strict'; | ||
for (let keyIndex = 0;keyIndex <= nodeKeysOriginal.length;keyIndex += increment) { | ||
for (let keyIndex = 0;keyIndex < nodeKeysOriginal.length;keyIndex += increment) { | ||
if (nodeKeysOriginal[keyIndex] !== nodeKeysSorted[keyIndex]) { | ||
@@ -33,0 +33,0 @@ isValid = false; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92324
94
1974