-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
41 lines (41 loc) · 898 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
34
35
36
37
38
39
40
41
{
"name": "hexo-toc",
"version": "1.1.0",
"description": "Insert a markdown TOC(Table Of Content) before posts be rendered. ",
"main": "index.js",
"scripts": {
"lint": "jshint index.js",
"pretest": "npm run lint",
"test": "echo ",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/bubkoo/hexo-toc.git"
},
"keywords": [
"hexo",
"toc",
"filter",
"markdown"
],
"author": {
"name": "bubkoo.wy",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bubkoo/hexo-toc/issues"
},
"homepage": "https://github.com/bubkoo/hexo-toc",
"dependencies": {
"cheerio": "^0.19.0",
"markdown-toc": "^0.12.12",
"object-assign": "^4.0.1",
"transliteration": "^1.1.7",
"uslug": "^1.0.3"
},
"devDependencies": {
"jshint": "^2.9.1"
}
}