remark-comment-config
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -5,2 +5,10 @@ <!--remark setext--> | ||
2.0.1 / 2015-12-26 | ||
================== | ||
* Remove distribution files from source (e4c17ec) | ||
* Remove support for bower (006f926) | ||
* Refactor to replace mocha with tape (b40a87d) | ||
* Replace internal dependency of mdast > remark (024b714) | ||
2.0.0 / 2015-12-24 | ||
@@ -7,0 +15,0 @@ ================== |
{ | ||
"name": "remark-comment-config", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Configure remark with comments at runtime", | ||
@@ -25,30 +25,27 @@ "license": "MIT", | ||
"devDependencies": { | ||
"browserify": "^11.0.0", | ||
"browserify": "^12.0.0", | ||
"eslint": "^1.1.0", | ||
"esmangle": "^1.0.0", | ||
"istanbul": "^0.3.0", | ||
"istanbul": "^0.4.0", | ||
"jscs": "^2.0.0", | ||
"jscs-jsdoc": "^1.0.0", | ||
"mdast": "^3.0.0-alpha.5", | ||
"mdast-github": "^2.0.0-alpha.1", | ||
"mdast-lint": "^2.0.0-alpha.1", | ||
"mdast-toc": "^1.0.0", | ||
"mdast-usage": "^2.0.0-alpha.1", | ||
"mocha": "^2.0.0" | ||
"remark": "^3.0.0", | ||
"remark-github": "^2.0.0", | ||
"remark-lint": "^2.0.0", | ||
"remark-toc": "^2.0.0", | ||
"remark-usage": "^2.0.0", | ||
"tape": "^4.0.0" | ||
}, | ||
"scripts": { | ||
"test-api": "mocha --check-leaks test.js", | ||
"test-coveralls": "istanbul cover _mocha --report lcovonly -- --check-leaks test.js", | ||
"test-coverage": "istanbul cover _mocha -- test.js", | ||
"test-travis": "npm run test-coveralls", | ||
"test": "npm run test-api", | ||
"build-md": "remark . --quiet --frail", | ||
"build-bundle": "browserify --no-builtins index.js -s remarkCommentConfig > remark-comment-config.js", | ||
"build-mangle": "esmangle remark-comment-config.js > remark-comment-config.min.js", | ||
"build": "npm run build-md && npm run build-bundle && npm run build-mangle", | ||
"lint-api": "eslint .", | ||
"lint-style": "jscs --reporter inline .", | ||
"lint": "npm run lint-api && npm run lint-style", | ||
"make": "npm run lint && npm run test-coverage", | ||
"bundle": "browserify --no-builtins index.js -s remarkCommentConfig > remark-comment-config.js", | ||
"postbundle": "esmangle remark-comment-config.js > remark-comment-config.min.js", | ||
"build-md": "mdast . --quiet", | ||
"build": "npm run build-md && npm run bundle" | ||
"test-api": "node test.js", | ||
"test-coverage": "istanbul cover test.js", | ||
"test": "npm run build && npm run lint && npm run test-coverage" | ||
} | ||
} |
@@ -6,10 +6,2 @@ # remark-comment-config [![Build Status](https://img.shields.io/travis/wooorm/remark-comment-config.svg)](https://travis-ci.org/wooorm/remark-comment-config) [![Coverage Status](https://img.shields.io/codecov/c/github/wooorm/remark-comment-config.svg)](https://codecov.io/github/wooorm/remark-comment-config) | ||
> :warning: **mdast is currently being renamed to remark** :warning: | ||
> | ||
> This means all plug-ins and relating projects change too, causing many | ||
> changes across the ecosystem. Expect the dust to settle in roughly a day. | ||
> | ||
> See this project at the previous stable commit | ||
> [10b0607](https://github.com/wooorm/remark-github/commit/10b0607). | ||
## Installation | ||
@@ -23,30 +15,6 @@ | ||
[Component.js](https://github.com/componentjs/component) | ||
**remark-comment-config** is also available for [duo](http://duojs.org/#getting-started), | ||
and as an AMD, CommonJS, and globals module, [uncompressed and | ||
compressed](https://github.com/wooorm/remark-comment-config/releases). | ||
```bash | ||
component install wooorm/remark-comment-config | ||
``` | ||
[Bower](http://bower.io/#install-packages) | ||
```bash | ||
bower install remark-comment-config | ||
``` | ||
[Duo](http://duojs.org/#getting-started) | ||
```javascript | ||
var commentConfig = require('wooorm/remark-comment-config'); | ||
``` | ||
UMD: globals, AMD, and CommonJS ([uncompressed](remark-comment-config.js) and [compressed](remark-comment-config.min.js)): | ||
```html | ||
<script src="path/to/remark.js"></script> | ||
<script src="path/to/remark-comment-config.js"></script> | ||
<script> | ||
remark.use(remarkCommentConfig); | ||
</script> | ||
``` | ||
## Table of Contents | ||
@@ -53,0 +21,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
7661
98