forked from cozy/cozy-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cozy-files",
"version": "0.1.0",
"description": "Cozy files allows to store files in your cozy",
"author": "Cozy Cloud <contact@cozycloud.cc> (http://cozycloud.cc)",
"licenses": [
{
"type": "AGPL v3",
"url": "http://www.gnu.org/licenses/agpl-3.0.html"
}
],
"engines": [
"node = 0.8.x"
],
"repository": {
"type": "git",
"url": "https://github.com/poupotte/cozy-files.git"
},
"main": "server.js",
"dependencies": {
"americano": "0.3.1",
"americano-cozy": "0.2.2",
"async": "0.2.9",
"cozy-realtime-adapter": "0.12.0",
"cozy-i18n-helper": "0.0.4",
"jade": "0.35.0",
"archiver": "0.4.10",
"printit": "0.1.3",
"cozy-clearance": "0.0.3"
},
"devDependencies": {
"should": "= 1.2.0",
"mocha": "= 1.6.0",
"chai": "= 1.3.0",
"request-json": ">= 0",
"coffee-script": "latest",
"printit": "~0.1.3"
},
"scripts": {
"test": "cake --use-js tests",
"start": "node build/server.js"
},
"cozy-permissions": {
"File": {
"description": "Store files in your cozy"
},
"Folder": {
"description": "Store folders in your cozy"
},
"send mail": {
"description": "Send links by mail"
},
"send mail from user": {
"description": "Send links by mail"
},
"send mail to user": {
"description": "Send links by mail"
},
"CozyInstance": {
"description": "To display the application in the right language, the application requires access to your instance informations."
},
"Contact": {
"description": "To easily find your contact when sharing files & folders."
}
}
}