forked from canjs/can-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 999 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
{
"name" : "can-compile",
"description" : "Compile CanJS Mustache and EJS views for lightning fast production apps",
"version" : "0.2.0",
"homepage" : "http://daffl.github.com/can-compile",
"author" : {
"name" : "David Luecke",
"email" : "[email protected]",
"web" : "http://daffl.github.com"
},
"main" : "lib/index.js",
"scripts" : {
"test" : "mocha test/"
},
"engines" : {
"node" : "~0.8"
},
"repository" : {
"type" : "git",
"url" : "[email protected]:daffl/can-compile.git"
},
"bin" : {
"can-compile" : "./bin/can-compile"
},
"keywords" : [ "gruntplugin", "canjs" ],
"devDependencies" : {
"expect.js" : ">= 0.1.2",
"mocha": "1.8.1",
"grunt": "~ 0.4.0",
"grunt-contrib-jshint": ">= 0.1.1"
},
"peerDependencies": {
"grunt": "~0.4.0"
},
"scripts": {
"test": "mocha test"
},
"dependencies" : {
"zombie" : "1.4.1",
"glob-whatev" : "0.1.8",
"commander" : "1.1.1",
"async" : "0.1.22"
}
}