-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 957 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
{
"name": "Cortex-demo",
"version": "0.0.1",
"description": "A demo project for the Cortex presence server",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/nodemon index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/test.*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/anas-ambri/Cortex-demo.git"
},
"keywords": [
"Cortex",
"demo"
],
"author": "Anas Ambri",
"license": "MIT",
"bugs": {
"url": "https://github.com/anas-ambri/Cortex-demo/issues"
},
"homepage": "https://github.com/anas-ambri/Cortex-demo",
"dependencies": {
"express": "~3.4.0",
"ejs": "latest",
"stylus": "latest",
"async": "~0.2.9",
"forever": "~0.10.8",
"ejs-locals": "~1.0.2",
"cortex-server" : "latest"
},
"devDependencies": {
"nodemon": "latest",
"supertest": "latest",
"mocha": "latest",
"should": "~1.3.0"
}
}