This repository has been archived by the owner on Jun 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
77
78
79
80
81
82
83
84
85
86
{
"name": "cozy-files",
"version": "1.1.26",
"description": "Cozy files allows to store files in your cozy",
"author": "Cozy Cloud <contact@cozycloud.cc> (http://cozycloud.cc)",
"license": "AGPL-3.0",
"engines": [
"node >= 0.10.0"
],
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-files.git"
},
"main": "build/server.js",
"dependencies": {
"americano": "0.4.4",
"archiver": "0.10.1",
"async": "1.5.2",
"axon": "0.6.1",
"cozy-clearance": "0.1.23",
"cozy-notifications-helper": "1.0.2",
"cozy-realtime-adapter": "1.0.1",
"cozydb": "0.1.10",
"jade": "1.11.0",
"mime": "1.2.11",
"moment": "2.10.6",
"multiparty": "3.3.0",
"node-polyglot": "0.3.0",
"printit": "0.1.18",
"request-json": "0.5.5"
},
"devDependencies": {
"brunch": "1.8.5",
"chai": "1.9.1",
"coffee-script": "latest",
"coffeelint": "1.14.2",
"cozy-fixtures": "1.1.3",
"decompress": "2.1.1",
"form-data": "^0.2.0",
"mocha": "2.1.0",
"nodemon": "1.8.1",
"rimraf": "2.2.8"
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && brunch b",
"build:server": "cake build",
"lint": "coffeelint -f coffeelint.json --quiet -r server server.coffee",
"test": "npm run test:server",
"test:build": "env USE_JS=true npm run test:server",
"test:server": "env NODE_ENV=test PORT=4444 mocha --reporter spec --compilers coffee:coffee-script/register test/*_test.coffee",
"start": "node build/server.js",
"dev:client": "cd client && brunch w",
"dev:server": "nodemon server.coffee --ignore client/",
"dev": "npm run dev:server & npm run dev:client"
},
"cozy-permissions": {
"File": {
"description": "Store files in your cozy"
},
"Folder": {
"description": "Store folders in your cozy"
},
"Notification": {
"description": "Display a notification when guests change file"
},
"send mail": {
"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."
},
"User": {
"description": "Need information for the from part of email sent."
},
"send mail from user": {
"description": "Send links by mail"
},
"send mail to user": {
"description": "Send links by mail"
}
}
}