forked from cozy/cozy-emails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.94 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cozy-emails",
"version": "0.9.4",
"engines": [
"node = 0.8.x"
],
"description": "Emails client for Cozycloud",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-emails.git"
},
"main": "server.coffee",
"dependencies": {
"americano": "0.4.2",
"cozydb": "0.0.16",
"printit": "0.1.7",
"async": "0.9.0",
"bluebird": "2.3.2",
"cozy-notifications-helper": "1.0.2",
"fast-json-patch": "0.4.0",
"html-to-text": "0.1.0",
"iconv": "2.1.4",
"imap": "0.8.13",
"jade": "1.6.0",
"lodash": "2.4.1",
"mailparser": "0.4.6",
"moment": "2.8.2",
"multiparty": "4.0.0",
"node-polyglot": "0.4.1",
"nodemailer": "1.3.0",
"request-json": "0.4.12",
"sanitize-html": "1.4.3",
"sanitizer": "0.1.2",
"socket.io": "1.1.0",
"uuid": "1.4.2",
"xmldom": "0.1.19",
"xoauth2": "1.0.0"
},
"devDependencies": {
"should": "4.0.4",
"mocha": "1.20.1",
"casperjs": "1.1.0-beta3",
"cozy-fixtures": "1.1.3",
"coffeelint": "1.6.0",
"coffee-19-jshint": "2.3.1",
"lorem-ipsum": "1.0.1",
"chai": "1.9.1",
"simplesmtp": "0.3.33",
"dovecot-testing": "0.0.3",
"coffee-script": "1.9.1",
"brunch": "1.8.0",
"biscotto": "2.3.1",
"opn": "1.0.1"
},
"scripts": {
"test": "npm run test:server",
"test:server": "mocha tests/index.coffee --bail --reporter spec --compilers coffee:coffee-script/register --colors",
"test:build": "USEJS=true npm run test:server",
"fixtures": "npm run fixtures:generate && npm run fixtures:loader && npm run fixtures:load",
"fixtures:generate": "coffee tests/fixtures/generator.coffee 1000",
"fixtures:loader": "coffee tests/fixtures/loader.coffee",
"fixtures:load": "cozy-fixtures load -l tests/fixtures",
"test:client": "COZY_URL=http://localhost:9125/ casperjs test ./client/tests/casper/*/",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && brunch b",
"build:server": "cake build",
"doc": "biscotto && opn ./doc/index.html",
"lint": "npm run lint1 && npm run lint2",
"lint1": "coffeelint -f coffeelint.json ./server/**/*.coffee",
"lint2": "coffee-jshint -o node --globals MODEL_MODULE ./server/**/*.coffee",
"start": "node build/server.js"
},
"cozy-permissions": {
"Account": {
"description": "Manages your email Accounts"
},
"MailsSettings": {
"description": "Store email app settings"
},
"Mailbox": {
"description": "Manage your Imap Mailboxes"
},
"Message": {
"description": "Manages your emails"
},
"Notification": {
"description": "Display new mails count as cozy notifications"
},
"CozyInstance": {
"description": "Localize the application with your language"
},
"Contact": {
"description": "Add contact from messages, send messages to contacts"
}
},
"cozy-displayName": "Emails"
}