-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
76 lines (76 loc) · 2.04 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
70
71
72
73
74
75
76
{
"name": "cozy-sync",
"version": "1.0.21",
"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": "build/server.js",
"scripts": {
"start": "node build/server.js",
"test": "cake --use-js tests",
"build:client": "cd client && brunch b",
"build:server": "cake build",
"build": "npm run build:client && npm run build:server",
"lint": "npm run lint1 || npm run lint2",
"lint1": "coffeelint -f coffeelint.json ./server/",
"lint2": "coffeelint -f coffeelint.json ./client/app/",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-sync"
},
"readmeFilename": "README.md",
"dependencies": {
"americano": "0.4.5",
"async": "1.5.2",
"axon": "2.0.2",
"cozy-ical": "1.1.19",
"cozy-jsdav-fork": "0.3.16",
"cozy-realtime-adapter": "1.0.2",
"cozy-vcard": "0.2.17",
"cozydb": "0.1.10",
"jade": "1.11.0",
"lazy": "1.0.11",
"moment": "2.12.0",
"node-polyglot": "2.0.0",
"printit": "0.1.18",
"shortid": "2.2.6"
},
"devDependencies": {
"chai": "3.5.0",
"request": "2.70.0",
"xmldoc": "0.4.0",
"mocha": "2.4.5",
"coffee-script": "latest",
"coffeelint": "1.15.0"
},
"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"
}
}
}