-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.28 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
{
"name": "handlebars-wax",
"version": "7.0.0",
"description": "Effortless wiring of Handlebars data, partials, helpers, and decorators.",
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"coveralls": "nyc report -r text-lcov | coveralls",
"test": "xo --fix && nyc ava -v"
},
"repository": {
"type": "git",
"url": "https://github.com/shannonmoeller/handlebars-wax.git"
},
"keywords": [
"handlebars",
"hbs",
"hb",
"html",
"glob",
"globby",
"register",
"data",
"partials",
"helpers",
"decorators"
],
"author": "Shannon Moeller <[email protected]> (http://shannonmoeller.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shannonmoeller/handlebars-wax/issues"
},
"homepage": "https://github.com/shannonmoeller/handlebars-wax",
"dependencies": {
"require-glob": "^3.2.0"
},
"devDependencies": {
"ava": "^0.25.0",
"axios": "^0.18.0",
"coveralls": "^3.0.0",
"express": "^4.16.2",
"handlebars": "^4.0.11",
"nyc": "^11.4.1",
"portfinder": "^1.0.13",
"xo": "^0.20.3"
},
"xo": {
"rules": {
"ava/no-async-fn-without-await": 0,
"node/no-deprecated-api": 0,
"capitalized-comments": 0
}
},
"engines": {
"node": ">= 4"
}
}