-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.24 KB
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
{
"author": {
"name": "James Sapara",
"email": "jsapara@slicedprojects.ca",
"url": "http://github.com/interlock"
},
"contributors": [
{
"name": "Dave Mosher",
"email": "davidmosher@gmail.com",
"url": "http://github.com/davemo"
},
{
"name": "Igor Mucsicska",
"email": "mucsi_96@yahoo.com",
"url": "http://github.com/mucsi96"
}
],
"license": "MIT",
"name": "connect-handlebars",
"description": "Connect middleware for Handlebars",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git://github.com/interlock/connect-handlebars.git"
},
"keywords": [
"Handlebars",
"Connect",
"Express",
"middleware"
],
"homepage": "http://github.com/interlock/connect-handlebars",
"bugs": {
"url": "https://github.com/interlock/connect-handlebars/issues"
},
"main": "lib/connect-handlebars.js",
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/interlock/connect-handlebars/blob/master/LICENSE"
}
],
"dependencies": {
"handlebars": "~4.0.5"
},
"devDependencies": {
"connect": "*",
"jasmine-node": "*"
},
"scripts": {
"test": "jasmine-node ./specs"
}
}