forked from cozy/cozy-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
67
68
69
{
"name": "cozy-sync",
"version": "1.0.7",
"description": "Synchronize you contacts and calendars through CalDAV and CardDAV protocols",
"author": "Cozy Cloud <[email protected]> (http://cozycloud.cc)",
"licenses": [
{
"type": "AGPL v3",
"url": "http://www.gnu.org/licenses/agpl-3.0.html"
}
],
"main": "server.js",
"scripts": {
"start": "node build/server.js",
"test": "cake --use-js tests",
"build": "cake build"
},
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-sync"
},
"readmeFilename": "README.md",
"dependencies": {
"americano": "0.4.1",
"americano-cozy": "0.2.11",
"async": "0.2.10",
"axon": "1.0.0",
"cozy-ical": "1.1.5",
"cozy-realtime-adapter": "0.11.3",
"cozy-vcard": "0.2.8",
"jade": "1.1.5",
"jsDAV": "cozy/jsDAV#c43a719d1e",
"lazy": "1.0.11",
"moment": "2.5.1",
"printit": "0.1.6",
"shortid": "2.0.0",
"time": "0.10.0"
},
"devDependencies": {
"chai": "1.9.0",
"request": "2.34.0",
"xmldoc": "0.1.2",
"mocha": "1.17.1",
"coffee-script": "latest"
},
"cozy-permissions": {
"Alarm": {
"description": "Creates and edits your alarms."
},
"Event": {
"description": "Creates and edits your events."
},
"Contact": {
"description": "Creates and edits your contacts"
},
"User": {
"description": "Used to recover your timezone"
},
"WebDAVAccount": {
"description": "Store webDAV password and sync informations"
},
"Tag": {
"description": "Read your tags, to get calendar's color"
},
"CozyInstance": {
"description": "Read your cozy's url to generate help"
}
}
}