Comparing version 1.2.0 to 2.0.0-next.1574045430.a4bba915a1a440e4e04b04d5f6edcf5992a31985
# History | ||
## v2.0.0 2019 November 18 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
- Minimum required node version changed from `node: >=4` to `node: >=8` to keep up with mandatory ecosystem changes | ||
## v1.2.0 2019 November 13 | ||
@@ -4,0 +9,0 @@ |
{ | ||
"name": "docmatter", | ||
"version": "1.2.0", | ||
"version": "2.0.0-next.1574045430.a4bba915a1a440e4e04b04d5f6edcf5992a31985", | ||
"description": "Battle tested SSG front matter parser. Extracted from DocPad. Delimiter lines have 3+ of the same character (such as `/***` and `***/`) allowing front matters to work with the syntax highlighting of your code editor. Supports custom parsers, e.g. `--- cson`. Parsers are handled externally.", | ||
@@ -58,3 +58,4 @@ "homepage": "https://github.com/bevry/docmatter", | ||
"contributors": [ | ||
"Benjamin Lupton (http://balupton.com)" | ||
"Benjamin Lupton (http://balupton.com)", | ||
"dependabot-preview[bot] (http://github.com/apps/dependabot-preview)" | ||
], | ||
@@ -69,3 +70,3 @@ "bugs": { | ||
"engines": { | ||
"node": ">=4" | ||
"node": ">=8" | ||
}, | ||
@@ -93,35 +94,15 @@ "editions": [ | ||
"engines": { | ||
"node": "6 || 8 || 10 || 12 || 13", | ||
"node": "8 || 10 || 12", | ||
"browsers": false | ||
} | ||
}, | ||
{ | ||
"description": "coffeescript compiled for node.js 4 with require for modules", | ||
"directory": "edition-node-4", | ||
"entry": "index.js", | ||
"tags": [ | ||
"javascript", | ||
"require" | ||
], | ||
"engines": { | ||
"node": "4 || 6 || 8 || 10 || 12 || 13", | ||
"browsers": false | ||
} | ||
} | ||
], | ||
"main": "index.js", | ||
"dependencies": { | ||
"editions": "^2.2.0" | ||
}, | ||
"main": "edition-esnext/index.js", | ||
"devDependencies": { | ||
"@babel/cli": "^7.7.0", | ||
"@babel/core": "^7.7.2", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.6.2", | ||
"@babel/preset-env": "^7.7.1", | ||
"assert-helpers": "4.10.0", | ||
"assert-helpers": "5.4.0", | ||
"coffeelint": "^2.1.0", | ||
"coffeescript": "^2.4.1", | ||
"kava": "^3.2.0", | ||
"kava": "4.0.0", | ||
"projectz": "^1.10.0", | ||
"valid-directory": "^1.0.0", | ||
"valid-directory": "^1.1.1", | ||
"yamljs": "^0.3.0" | ||
@@ -131,5 +112,4 @@ }, | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-esnext && npm run our:compile:edition-node-4", | ||
"our:compile": "npm run our:compile:edition-esnext", | ||
"our:compile:edition-esnext": "coffee -bco ./edition-esnext ./source", | ||
"our:compile:edition-node-4": "env BABEL_ENV=edition-node-4 coffee -bcto ./edition-node-4/ ./source", | ||
"our:deploy": "echo no need for this project", | ||
@@ -150,25 +130,4 @@ "our:meta": "npm run our:meta:projectz", | ||
"our:verify:directory": "npx valid-directory", | ||
"test": "node ./test.js" | ||
}, | ||
"babel": { | ||
"env": { | ||
"edition-node-4": { | ||
"sourceType": "script", | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"node": "4" | ||
}, | ||
"modules": "commonjs" | ||
} | ||
] | ||
], | ||
"plugins": [ | ||
"@babel/proposal-object-rest-spread" | ||
] | ||
} | ||
} | ||
"test": "node ./edition-esnext/test.js" | ||
} | ||
} |
@@ -49,7 +49,8 @@ <!-- TITLE/ --> | ||
<ul><li><code>docmatter</code> aliases <code>docmatter/index.js</code> which uses <a href="https://editions.bevry.me" title="Editions are the best way to produce and consume packages you care about.">Editions</a> to automatically select the correct edition for the consumers environment</li> | ||
<li><code>docmatter/source/index.coffee</code> is coffeescript source code with require for modules</li> | ||
<li><code>docmatter/edition-esnext/index.js</code> is coffeescript compiled for node.js with require for modules</li> | ||
<li><code>docmatter/edition-node-4/index.js</code> is coffeescript compiled for node.js 4 with require for modules</li></ul> | ||
<ul><li><code>docmatter/source/index.coffee</code> is coffeescript source code with require for modules</li> | ||
<li><code>docmatter</code> aliases <code>docmatter/edition-esnext/index.js</code></li> | ||
<li><code>docmatter/edition-esnext/index.js</code> is coffeescript compiled for node.js with require for modules</li></ul> | ||
<p>Environments older than Node.js v8 may need <a href="https://babeljs.io/docs/usage/polyfill/" title="A polyfill that emulates missing ECMAScript environment features">Babel's Polyfill</a> or something similar.</p> | ||
<!-- /INSTALL --> | ||
@@ -190,3 +191,4 @@ | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/docmatter/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/docmatter">view contributions</a></li></ul> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/docmatter/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/docmatter">view contributions</a></li> | ||
<li><a href="http://github.com/apps/dependabot-preview">dependabot-preview[bot]</a> — <a href="https://github.com/bevry/docmatter/commits?author=dependabot-preview[bot]" title="View the GitHub contributions of dependabot-preview[bot] on repository bevry/docmatter">view contributions</a></li></ul> | ||
@@ -193,0 +195,0 @@ <a href="https://github.com/bevry/docmatter/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
0
7
211
19902
8
43
1
- Removededitions@^2.2.0
- Removededitions@2.3.1(transitive)
- Removederrlop@2.2.0(transitive)
- Removedsemver@6.3.1(transitive)