-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 1.01 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": "Cozic",
"version": "0.0.1",
"engines": [
"node = 0.8.x"
],
"description": "A cozy application to play, upload and organize your music",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rdubigny/cozy-music.git"
},
"main": "server.coffee",
"dependencies": {
"jade": "= 0.27.6",
"express": "= 3.0.0",
"connect": "= 2.6.1",
"compound": "= 1.1.6",
"co-generators": "= 0.0.1-6",
"coffee-script": "= 1.4.0",
"mime": "= 1.2.7",
"qs": "= 0.5.0",
"jugglingdb": "= 0.2.0-23",
"jugglingdb-cozy-adapter": "0.3.11",
"request-json": "0.4.3"
},
"devDependencies": {
"should": "= 1.2.0",
"mocha": "= 1.6.0",
"chai": "= 1.3.0",
"request-json": ">= 0"
},
"scripts": {
"test": "cake tests",
"start": "coffee server.coffee"
},
"cozy-permissions": {
"Track": {
"description": "upload and store your music on your cozy"
},
"Playlist": {
"description": "manage your playlists"
}
}
}