forked from hexojs/hexo-renderer-marked
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 959 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
{
"name": "hexo-renderer-kramed",
"version": "0.1.4",
"description": "Markdown renderer plugin for Hexo with kramed engine",
"main": "index",
"scripts": {
"eslint": "eslint .",
"jscs": "jscs .",
"test": "mocha test/index.js",
"test-cov": "istanbul cover --print both _mocha -- test/index.js"
},
"directories": {
"lib": "./lib"
},
"repository": "sun11/hexo-renderer-kramed",
"keywords": [
"hexo",
"markdown",
"kramed",
"renderer"
],
"author": "Starsky Wong <[email protected]> (http://sun11.me)",
"license": "MIT",
"dependencies": {
"hexo-util": "^0.6.0",
"kramed": "^0.5.6",
"object-assign": "^4.1.0",
"strip-indent": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"chai": "^3.5.0",
"eslint": "^2.12.0",
"eslint-config-hexo": "^1.0.3",
"istanbul": "^0.4.3",
"jscs": "^3.0.4",
"jscs-preset-hexo": "^1.0.1",
"mocha": "^2.5.3"
}
}