forked from kchen0x/hexo-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "hexo-footnote",
"version": "1.0.4",
"description": "A plugin to support markdown footnotes and Wiki-Style tooltip reference in your Hexo blog posts.",
"main": "index.js",
"scripts": {
"mocha": "./node_modules/.bin/mocha -u bdd",
"cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/guorant/hexo-footnote.git"
},
"keywords": [
"hexo",
"plugin",
"footnote",
"footnotes",
"reference",
"tooltip"
],
"author": "Yujun Long",
"license": "MIT",
"bugs": {
"url": "https://github.com/guorant/hexo-footnote/issues"
},
"homepage": "https://github.com/guorant/hexo-footnote#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint-config-google": "^0.7.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"markdown-it": "^8.4.2",
"hexo-util": "^0.6.3"
}
}