-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "ActivityStreamsServer",
"version": "0.0.0",
"description": "The server to maintain Activity Streams REST API",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jasmine-node ./tests",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenSocial/activitystreams-server.git"
},
"keywords": [
"activity",
"stream",
"activitystream"
],
"dependencies": {
"body-parser": "1.2.x",
"connect-mongo": "0.4.x",
"errorhandler": "1.0.x",
"express": "4.2.x",
"express-namespace": "0.1.x",
"jade": "1.3.x",
"method-override": "1.0.x",
"mongodb": "1.4.x",
"nconf": "0.6.x",
"socket.io": "*",
"serve-favicon": "2.0.x"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-concat": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "*",
"jasmine-node": "1.14.x"
}
}