-
-
Notifications
You must be signed in to change notification settings - Fork 715
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
113 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,4 @@ vendor | |
temp | ||
tmp | ||
TODO.md | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Test against this version of Node.js | ||
environment: | ||
matrix: | ||
# node.js | ||
- nodejs_version: "8.0" | ||
- nodejs_version: "7.0" | ||
- nodejs_version: "6.0" | ||
- nodejs_version: "5.0" | ||
- nodejs_version: "4.0" | ||
- nodejs_version: "0.12" | ||
- nodejs_version: "0.10" | ||
|
||
# Install scripts. (runs after repo cloning) | ||
install: | ||
# Get the latest stable version of Node.js or io.js | ||
- ps: Install-Product node $env:nodejs_version | ||
# install modules | ||
- npm install | ||
|
||
# Post-install test scripts. | ||
test_script: | ||
# Output useful info for debugging. | ||
- node --version | ||
- npm --version | ||
# run tests | ||
- npm test | ||
|
||
# Don't actually build. | ||
build: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,43 +11,90 @@ | |
"index.js" | ||
], | ||
"dependencies": { | ||
"concat-stream": "^1.5.1", | ||
"gray-matter": "^2.0.2", | ||
"lazy-cache": "^1.0.2", | ||
"concat-stream": "^1.5.2", | ||
"diacritics-map": "^0.1.0", | ||
"gray-matter": "^2.1.0", | ||
"lazy-cache": "^2.0.2", | ||
"list-item": "^1.1.1", | ||
"markdown-link": "^0.1.1", | ||
"minimist": "^1.2.0", | ||
"mixin-deep": "^1.1.3", | ||
"object.pick": "^1.1.1", | ||
"remarkable": "^1.6.1", | ||
"repeat-string": "^1.5.2" | ||
"object.pick": "^1.2.0", | ||
"remarkable": "^1.7.1", | ||
"repeat-string": "^1.6.1", | ||
"strip-color": "^0.1.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "*", | ||
"should": "*" | ||
"gulp-format-md": "^0.1.11", | ||
"mocha": "^3.2.0" | ||
}, | ||
"keywords": [ | ||
"anchor", | ||
"commonmark", | ||
"docs", | ||
"document", | ||
"documentation", | ||
"heading", | ||
"markdown", | ||
"md", | ||
"glossary", | ||
"heading", | ||
"index", | ||
"links", | ||
"reference", | ||
"markdown", | ||
"md", | ||
"plugin", | ||
"readme", | ||
"reference", | ||
"remarkable", | ||
"remarkableplugin", | ||
"plugin", | ||
"render", | ||
"renderer", | ||
"table-of-contents", | ||
"table of contents", | ||
"table", | ||
"table of contents", | ||
"table-of-contents", | ||
"toc", | ||
"write" | ||
], | ||
"version": "1.1.0", | ||
"contributors": [ | ||
"(https://github.com/lu22do)", | ||
"=^._.^= (http://maxogden.com)", | ||
"Benjamin Schmitz (https://github.com/Vortex375)", | ||
"Christian Raunitschka (raunitschka.de)", | ||
"Daniel Chen (http://chendaniely.github.io)", | ||
"David Mohl <[email protected]> (https://dvcrn.github.io)", | ||
"Federico Soave (https://github.com/Feder1co5oave)", | ||
"Gary Green (https://github.com/garygreen)", | ||
"Jon Schlinkert <[email protected]> (http://twitter.com/jonschlinkert)", | ||
"Josh Duff (https://tehshrike.github.io)", | ||
"Matt Ellis (http://sticklebackplastic.com)", | ||
"Nicolas Morel <[email protected]> (https://github.com/Marsup)", | ||
"Richard Bradley (https://github.com/RichardBradley)", | ||
"Seth Vincent <[email protected]> (http://sethvincent.com)", | ||
"Stefan Walther (http://qliksite.io)", | ||
"Tao Wang <[email protected]> (https://github.com/twang2218)", | ||
"Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/jonschlinkert/markdown-toc/issues" | ||
}, | ||
"files": [ | ||
"cli.js", | ||
"index.js", | ||
"lib" | ||
], | ||
"bin": { | ||
"markdown-toc": "cli.js" | ||
}, | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"ignore": [ | ||
"actual", | ||
"bower_components", | ||
"fixtures", | ||
"node_modules", | ||
"temp", | ||
"test", | ||
"test.js", | ||
"tmp" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,26 @@ | |
"homepage": "https://github.com/jonschlinkert/markdown-toc", | ||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)", | ||
"contributors": [ | ||
"(https://github.com/lu22do)", | ||
"=^._.^= (http://maxogden.com)", | ||
"Andrés (http://angrykoala.github.io)", | ||
"Benjamin Schmitz (https://github.com/Vortex375)", | ||
"Christian Raunitschka (raunitschka.de)", | ||
"Daniel Chen (http://chendaniely.github.io)", | ||
"David Mohl <[email protected]> (https://dvcrn.github.io)", | ||
"Daniel Mietchen (http://about.me/daniel.mietchen)", | ||
"David Mohl (https://dvcrn.github.io)", | ||
"Federico Soave (https://github.com/Feder1co5oave)", | ||
"Gary Green (https://github.com/garygreen)", | ||
"Jon Schlinkert <[email protected]> (http://twitter.com/jonschlinkert)", | ||
"Jon Schlinkert (http://twitter.com/jonschlinkert)", | ||
"Josh Duff (https://tehshrike.github.io)", | ||
"Matt Ellis (http://sticklebackplastic.com)", | ||
"Nicolas Morel <[email protected]> (https://github.com/Marsup)", | ||
"Nicolas Morel (https://github.com/Marsup)", | ||
"Rafael Steil (http://rafaelsteil.com)", | ||
"Richard Bradley (https://github.com/RichardBradley)", | ||
"Seth Vincent <[email protected]> (http://sethvincent.com)", | ||
"Seth Vincent (https://sethvincent.com)", | ||
"Stefan Walther (http://qliksite.io)", | ||
"Tao Wang <[email protected]> (https://github.com/twang2218)", | ||
"Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)" | ||
"Tao Wang (https://github.com/twang2218)", | ||
"(https://github.com/lu22do)", | ||
"Zeke Sikelianos (http://zeke.sikelianos.com)" | ||
], | ||
"repository": "jonschlinkert/markdown-toc", | ||
"bugs": { | ||
|