This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "cozy-photos",
"version": "1.0.29",
"author": "",
"license": "AGPL-3.0",
"description": "A cozy application to store, browse and share your photos.",
"main": "build/server.js",
"dependencies": {
"americano": "0.4.5",
"archiver": "1.0.0",
"async": "1.5.2",
"axon": "2.0.2",
"cozy-clearance": "0.1.22",
"cozy-realtime-adapter": "1.0.2",
"cozydb": "0.1.10",
"gm": "1.22.0",
"jade": "1.11.0",
"mime": "1.3.4",
"multiparty": "4.1.2",
"node-polyglot": "2.0.0",
"printit": "0.1.18",
"qs": "6.1.0",
"socket.io": "1.4.5"
},
"devDependencies": {
"brunch": "1.8.5",
"chai": "3.5.0",
"request-json": "0.5.5",
"mocha": "2.4.5",
"sinon": "1.17.3",
"coffee-script": "1.10.0"
},
"scripts": {
"test": "cake tests",
"build:client": "cd client && brunch b",
"build:server": "cake build",
"build": "npm run build:client && npm run build:server",
"start": "node build/server.js"
},
"repository": "https://github.com/cozy/cozy-photos.git",
"readmeFilename": "README.md",
"cozy-permissions": {
"Photo": {
"description": "Creates and edits your photos"
},
"Album": {
"description": "Creates and edits your album which contains your photos."
},
"Contact": {
"description": "Allows you to easily share an album"
},
"CozyInstance": {
"description": "Read language setting"
},
"File": {
"description": "Import pictures from the Files app"
},
"User": {
"description": "Need information for the from part of email sent."
},
"Send mail from user": {
"description": "Share album with your friends"
}
}
}