forked from arboleya/coffee-toaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (31 loc) · 1.25 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
{
"author" : "Anderson Arboleya <[email protected]>",
"name" : "coffee-toaster",
"description" : "Minimalist manager and build system for CoffeeScript, an alternative for AMD's or CJS's OOP patterns, but with similar results. Made for those who dare to use class definitions in CoffeeScript while being able to easily inherit from external files. Powered with imports directives that use wildcards facilities, exposed scopes and excluded files filter options. The system can even use folders-as-namespaces to help you avoid naming collisions in architecture.",
"version" : "0.6.3",
"repository" : {
"type" : "git",
"url" : "http://github.com/serpentem/coffee-toaster"
},
"main" : "./lib/toaster",
"directories" : {
"lib" : "./lib/"
},
"bin" : {
"toaster" : "./bin/toaster"
},
"scripts" : {
"test" : "vows spec/*.coffee --spec"
},
"engines" : {
"node" : ">= 0.4.9"
},
"dependencies" : {
"coffee-script" : "1.3.3",
"colors" : "0.5.x",
"uglify-js" : "1.1.1",
"optimist" : "0.2.x",
"growl" : "1.2.0",
"vows" : "0.6.3"
}
}