forked from ntesmail/ftl2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1014 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": "ftl2html",
"description": "covert freemarker template(ftl) to html by fmpp",
"version": "1.1.3",
"author": "wuzifang, jfw10973",
"license": "MIT",
"repository": "ntesmail/ftl2html",
"main": "index.js",
"scripts": {
"test": "mocha --require test/env --reporter nyan",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha"
},
"keywords": [
"freemarker",
"ftl",
"fmpp"
],
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/ntesmail/ftl2html/issues"
},
"homepage": "https://github.com/ntesmail/ftl2html#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.18.0",
"eslint-config-google": "^0.7.1",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-html": "^2.0.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
},
"dependencies": {
"glob": "^7.1.1"
}
}