forked from liradb2000/markdown-it-toc-done-right
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.73 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "markdown-it-toc-done-right",
"version": "3.0.1",
"description": "Table of contents (TOC) for markdown-it markdown parser with focus on semantic and security.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nagaozen/markdown-it-toc-done-right.git"
},
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"toc",
"table of contents"
],
"author": "Nagao, Fabio Zendhi <https://github.com/nagaozen>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nagaozen/markdown-it-toc-done-right/issues"
},
"homepage": "https://github.com/nagaozen/markdown-it-toc-done-right#readme",
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": "eslint-config-i-am-meticulous",
"rules": {
"import/order": 0,
"no-mixed-spaces-and-tabs": 0,
"import/newline-after-import": 0,
"import/no-unresolved": 0
}
},
"jest": {
"verbose": true
},
"runkitExampleFilename": "runkit.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-i-am-meticulous": "^10.0.0",
"jest": "^23.1.0",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^5.0.2",
"uglify-js": "^3.4.0",
"uslug": "^1.0.4"
},
"peerDependencies": {
"markdown-it": "^8.4.1"
}
}