-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
46 lines (46 loc) · 921 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
42
43
44
45
46
{
"name": "koa-hbs",
"version": "0.9.0",
"description": "Handlebars Templates via Generators for Koa",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/gilt/koa-hbs.git"
},
"homepage": "https://github.com/gilt/koa-hbs/",
"scripts": {
"test": "gulp test"
},
"keywords": [
"koa",
"handlebars",
"template",
"view",
"render"
],
"author": "Joe Wilm <[email protected]>",
"maintainers": [
{
"name": "Andrew Powell",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"glob": "^7.0.5",
"handlebars": "^4.0.5"
},
"devDependencies": {
"co": "^4.6.0",
"eslint": "^3.12.2",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"koa": "^1.2.0",
"koa-router": "^5.4.0",
"supertest": "^2.0.1"
},
"engines": {
"node": ">= 4.7.0"
}
}