forked from medfreeman/markdown-it-toc-and-anchor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 823 Bytes
/
package.json
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
{
"name": "markdown-it-toc-and-anchor",
"version": "2.0.0",
"description": "markdown-it plugin to add toc and anchor links in headings",
"keywords": [
"makrdown-it",
"makrdown-it-plugin",
"makrdown",
"toc",
"anchor"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/MoOx/markdown-it-toc-and-anchor.git",
"main": "dist/index.js",
"dependencies": {
"markdown-it": "^5.0.0",
"uslug": "^1.0.3"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-tape-runner": "^1.1.0",
"eslint": "^0.22.1",
"tape": "^4.0.0"
},
"scripts": {
"lint": "eslint .",
"tape": "babel-tape-runner '__tests__/*.js'",
"test": "npm run lint && npm run tape",
"prepublish": "babel src --out-dir dist"
}
}