forked from alessioalex/ClientManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·32 lines (32 loc) · 1 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
{
"name" : "ClientsApp",
"description" : "Backbone demo with Node.js on the backend",
"version" : "0.0.1",
"author" : "Alexandru Vladutu <[email protected]>",
"engines" : {
"node": ">=0.6.x"
},
"dependencies": {
"async" : "0.1.x",
"colors" : "*",
"connect" : "2.1.x",
"connect-timeout" : "0.0.1",
"express" : "2.x.x",
"moment" : "1.6.x",
"mongoose" : "2.5.x",
"uglify-js" : "1.2.x",
"underscore" : "*",
"gzippo" : "0.1.4",
"requirejs" : "2.0.2"
},
"devDependencies": {
"mocha" : "1.1.x",
"should" : "0.6.x",
"request" : "2.9.x"
},
"scripts": {
"test" : "node_modules/.bin/mocha --ui bdd --recursive --reporter spec --timeout 10000 --slow 300",
"postinstall" : "jake -v || npm install [email protected] -g",
"start" : "NODE_ENV=production node app.js"
}
}