remark-captions
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "remark-captions", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"repository": { | ||
@@ -15,3 +15,3 @@ "url": "https://github.com/zestedesavoir/zmarkdown/tree/master/packages/remark-captions", | ||
"scripts": { | ||
"pretest": "eslint src", | ||
"pretest": "eslint .", | ||
"prepare": "del-cli dist && cross-env BABEL_ENV=production babel src --out-dir dist", | ||
@@ -49,3 +49,3 @@ "test": "jest", | ||
"rehype-stringify": "^3.0.0", | ||
"remark-parse": "^4.0.0", | ||
"remark-parse": "^5.0.0", | ||
"remark-rehype": "^3.0.0", | ||
@@ -52,0 +52,0 @@ "unified": "^6.1.5" |
@@ -7,3 +7,3 @@ const clone = require('clone') | ||
table: 'Table:', | ||
code: 'Code:' | ||
code: 'Code:', | ||
} | ||
@@ -13,3 +13,3 @@ | ||
blockquote: 'Source:', | ||
image: 'Figure:' | ||
image: 'Figure:', | ||
} | ||
@@ -130,3 +130,3 @@ | ||
type: 'text', | ||
value: firstTextLine.trimLeft() // remove the " " after the {prefix}: | ||
value: firstTextLine.trimLeft(), // remove the " " after the {prefix}: | ||
}) | ||
@@ -133,0 +133,0 @@ |
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
17529