forked from cozy/cozy-contacts-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "cozy-contacts",
"version": "1.1.4",
"author": "Cozy Cloud <[email protected]> (http://cozycloud.cc)",
"licenses": [
{
"type": "AGPL v3",
"url": "http://www.gnu.org/licenses/agpl-3.0.html"
}
],
"description": "A cozy application to manage your contacts.",
"main": "server.coffee",
"dependencies": {
"americano": "0.3.11",
"async": "0.9.0",
"cozy-realtime-adapter": "1.0.0",
"cozy-vcard": "0.2.1",
"cozydb": "0.0.11",
"jade": "1.3.1",
"multiparty": "4.0.0",
"printit": "0.1.3"
},
"devDependencies": {
"request-json": "0.4.13",
"chai": "1.5.0",
"mocha": "1.9.0",
"sinon": "1.6.0",
"coffee-script": "1.9.1"
},
"scripts": {
"test": "cake --use-js tests",
"start": "node build/server.js"
},
"repository": "https://github.com/mycozycloud/cozy-contacts",
"readmeFilename": "README.md",
"cozy-permissions": {
"Contact": {
"description": "Create and edit your contacts."
},
"CozyInstance": {
"description": "Read language setting"
},
"ContactConfig": {
"description": "Store your settings for contacts"
},
"Tag": {
"description": "Create new tags and change their color"
},
"WebDAVAccount": {
"description": "Store webDAV password and sync informations"
}
}
}