html-react-parser
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -46,3 +46,4 @@ 'use strict'; | ||
// set the next node for the previous node (if applicable) | ||
if (prevNode = result[i - 1]) { | ||
prevNode = result[i - 1]; | ||
if (prevNode) { | ||
prevNode.next = nodeObj; | ||
@@ -49,0 +50,0 @@ } |
{ | ||
"name": "html-react-parser", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "An HTML to React parser.", | ||
@@ -8,3 +8,4 @@ "author": "Mark <mark@remarkablemark.org>", | ||
"scripts": { | ||
"test": "mocha" | ||
"test": "mocha", | ||
"lint": "eslint index.js \"lib/**\" \"test/**\"" | ||
}, | ||
@@ -30,9 +31,10 @@ "repository": { | ||
"devDependencies": { | ||
"eslint": "^3.3.1", | ||
"jsdomify": "^2.1.0", | ||
"mocha": "^3.0.2", | ||
"react": "^15.3.0", | ||
"react-dom": "^15.3.0" | ||
"react": "*", | ||
"react-dom": "*" | ||
}, | ||
"peerDependencies": { | ||
"react": "^0.13 || ^15.0" | ||
"react": ">=0.14" | ||
}, | ||
@@ -39,0 +41,0 @@ "browser": { |
Sorry, the diff of this file is not supported yet
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
18340
423
5