-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 844 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
{
"name": "hexo-renderer-twig",
"version": "1.1.0",
"description": "twig renderer 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-renderer-twig",
"keywords": [
"hexo",
"twig",
"renderer"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"license": "MIT",
"dependencies": {
"swig": "^1.4.2",
"swig-extras": "0.0.1",
"twig": "^0.8.9"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-hexo": "^1.0.2",
"istanbul": "^0.4.1",
"jscs": "^2.7.0",
"jscs-preset-hexo": "^1.0.1",
"mocha": "^2.3.4"
}
}