-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "assembly",
"description": "build tool to assemble client side javascript projects",
"version": "0.3.1",
"author": "Ryan Fitzgerald <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/Wantworthy/assembly.git"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": ["client", "backbone", "templates", "handlebars", "middleware", "web"],
"dependencies": {
"broadway" : "0.1.x",
"less" : "1.3.x",
"mime" : "1.2.x",
"utile": "0.1.x",
"watch": "0.5.x",
"pkginfo": "0.2.x",
"read-dir-files" : "0.1.x",
"detective" : "~0.1.0",
"resolve" : "0.2.x",
"uglify-js" : "1.3.x",
"traverse" : "0.6.x",
"optimist" : "0.3.x"
},
"devDependencies": {
"mocha" : "1.3.x",
"should": "0.6.x",
"coffee-script" : "1.3.x",
"handlebars" : "1.0.x",
"underscore" : "1.3.x",
"express" : "2.5.x"
},
"bin": { "assembly": "./bin/assembly" },
"scripts": {
"test" : "make test",
"start" : "node examples/server.js"
},
"engines": { "node": ">= 0.6.0" },
"main": "./lib/assembly"
}