-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.38 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
61
62
63
{
"name": "gulp-hb",
"version": "8.0.0",
"description": "A sane Handlebars Gulp plugin.",
"main": "src/gulp-hb.js",
"scripts": {
"coveralls": "nyc report -r text-lcov | coveralls",
"x-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 <me@shannonmoeller.com> (http://shannonmoeller.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shannonmoeller/gulp-hb/issues"
},
"homepage": "https://github.com/shannonmoeller/gulp-hb",
"dependencies": {
"ansi-gray": "^0.1.1",
"ansi-green": "^0.1.1",
"cli-columns": "^3.1.2",
"handlebars": "^4.1.0",
"handlebars-wax": "^6.1.0",
"plugin-error": "^1.0.1",
"through2": "^3.0.0"
},
"devDependencies": {
"ava": "^1.2.1",
"chokidar-cli": "^1.2.2",
"coveralls": "^3.0.2",
"nyc": "^13.3.0",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3",
"xo": "^0.24.0"
},
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}