forked from tylerlong/markdown-it-toc-and-anchor
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 959 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "markdown-it-github-toc",
"version": "3.2.4",
"description": "markdown-it plugin to add toc and anchor links in headings",
"keywords": [
"makrdown-it",
"makrdown-it-plugin",
"markdown",
"toc",
"anchor"
],
"author": "Tyler Long",
"license": "MIT",
"repository": "https://github.com/tylingsoft/markdown-it-github-toc.git",
"main": "src/index.bundle.js",
"dependencies": {
"uslug": "^1.0.4"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.11",
"markdown-it": "^8.3.0",
"npm-check-updates": "^2.10.3",
"standard": "^9.0.0",
"tape": "^4.6.3",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"build": "webpack --progress --colors --watch",
"test": "tape 'test/*.bundle.js'",
"upgrade": "ncu -ua && yarn upgrade"
}
}