Skip to content

Commit

Permalink
run update
Browse files Browse the repository at this point in the history
  • Loading branch information
doowb committed Sep 19, 2017
1 parent 1ede564 commit 1e8f01e
Show file tree
Hide file tree
Showing 8 changed files with 113 additions and 37 deletions.
5 changes: 0 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
},

"env": {
"browser": false,
"es6": true,
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ vendor
temp
tmp
TODO.md
package-lock.json
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ os:
language: node_js
node_js:
- node
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
matrix:
allow_failures:
- node_js: '4'
- node_js: '0.12'
- node_js: '0.10'
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013-2017, Jon Schlinkert
Copyright (c) 2013-2017, Jon Schlinkert.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
29 changes: 29 additions & 0 deletions appveyor.yml
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
79 changes: 63 additions & 16 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
}
7 changes: 5 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
'use strict';

/**
* Module dependencies
/*!
* markdown-toc <https://github.com/jonschlinkert/markdown-toc>
*
* Copyright © 2013-2017, Jon Schlinkert.
* Released under the MIT License.
*/

var utils = require('./lib/utils');
Expand Down
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 1e8f01e

Please sign in to comment.