forked from hexojs/hexo-generator-feed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "hexo-generator-fbia",
"version": "0.0.2",
"description": "Facebook Instant Articles Feed generator plugin for Hexo",
"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": "hexojs/hexo-generator-fbia",
"keywords": [
"hexo",
"facebook",
"generator"
],
"author": "Ian Wu <onlinemad@gmail.com>",
"license": "MIT",
"dependencies": {
"markdown-it": "^8.2.2",
"markdown-it-attrs": "^0.8.0",
"markdown-it-fb-figure": "0.0.1",
"markdown-it-implicit-figures": "^0.3.2",
"nunjucks": "^2.4.1",
"object-assign": "^4.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"eslint": "^2.4.0",
"eslint-config-hexo": "^1.0.3",
"hexo": "^3.0.0",
"istanbul": "^0.4.2",
"jscs": "^2.11.0",
"jscs-preset-hexo": "^1.0.1",
"mocha": "^2.4.5"
}
}