-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.05 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
43
{
"name": "gulp-dot-precompiler",
"version": "0.3.0",
"description": "Gulp plugins for precompilation of doT template engine.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive test -R spec -r should && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kentliau/gulp-dot-precompiler.git"
},
"keywords": [
"doT",
"template",
"precompilation",
"gulp",
"plugin",
"gulpplugin",
"gulpfriendly"
],
"author": "Kent Liau",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentliau/gulp-dot-precompiler/issues"
},
"homepage": "https://github.com/kentliau/gulp-dot-precompiler",
"dependencies": {
"lodash": "~2.4.1",
"dot": "~1.0.2",
"through2": "~0.4.0",
"gulp-util": "~2.2.12"
},
"devDependencies": {
"mocha": "~1.17.0",
"should": "~3.0.1",
"istanbul": "~0.2.4",
"coveralls": "~2.6.1"
}
}