forked from viadeo/tetra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "tetra",
"description": "Tetra.js MVC framework for client-side and server-side (with Node.js/Express)",
"version": "1.0.1",
"author": {
"name": "Olivier Hory",
"email": "[email protected]"
},
"contributors": [
{
"name": "Olivier Hory",
"email": "[email protected]"
},
{
"name": "Sylvain Faucherand",
"email": "[email protected]"
},
{
"name": "Cormac Flynn",
"email": "[email protected]"
},
{
"name": "Yannick Croissant",
"email": "[email protected]"
}
],
"dependencies": {
"express": ">= 3.0",
"mysql": ">= 0.9.5",
"requirejs": "*"
},
"devDependencies": {
"grunt": ">=0.3.15"
},
"repository": {
"type": "git",
"url": "git://github.com/viadeo/tetra"
},
"engines": {
"node": ">= 0.8.7"
},
"scripts": {
"postinstall": "git submodule update; cd lib/deps/jquery && git submodule init && git submodule update && npm install && grunt; cd ../../../ && grunt default --verbose"
}
}