forked from shannonmoeller/gulp-hb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "gulp-hb",
"version": "5.0.1",
"description": "A sane Handlebars Gulp plugin.",
"main": "src/gulp-hb.js",
"scripts": {
"coveralls": "nyc report -r text-lcov | coveralls",
"pretest": "xo",
"test": "nyc ava -v",
"posttest": "nyc report -r lcov",
"watch": "chokidar '{src,test}/**/*.js' -c 'npm test'"
},
"repository": {
"type": "git",
"url": "https://github.com/shannonmoeller/gulp-hb.git"
},
"keywords": [
"gulpplugin",
"gulp",
"handlebars",
"hb",
"hbs",
"hbt",
"compile",
"render",
"static",
"data",
"partial",
"partials",
"helper",
"helpers",
"decorator",
"decorators"
],
"author": "Shannon Moeller <[email protected]> (http://shannonmoeller.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shannonmoeller/gulp-hb/issues"
},
"homepage": "https://github.com/shannonmoeller/gulp-hb",
"dependencies": {
"cli-columns": "^1.0.5",
"gulp-util": "^3.0.7",
"handlebars": "^4.0.5",
"handlebars-wax": "^3.4.1",
"object-assign": "^4.0.1",
"through2": "^2.0.1"
},
"devDependencies": {
"ava": "^0.12.0",
"chokidar-cli": "^1.2.0",
"coveralls": "^2.11.6",
"nyc": "^6.0.0",
"vinyl-fs": "^2.3.1",
"xo": "^0.12.1"
},
"engines": {
"node": ">= 0.12"
}
}