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 39
/
package.json
104 lines (104 loc) · 3.74 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
99
100
101
102
103
104
{
"name": "cozy-calendar",
"version": "1.0.47",
"displayName": "Calendar",
"description": "Manage your events and alarms with your Cozy.",
"author": "Cozy Cloud <[email protected]> (http://cozycloud.cc)",
"license": "AGPL-3.0",
"engines": [
"node = 0.10.x"
],
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-calendar.git"
},
"main": "build/server.js",
"dependencies": {
"americano": "0.4.5",
"archiver": "1.0.0",
"async": "1.5.2",
"cozy-ical": "1.1.19",
"cozy-realtime-adapter": "1.0.2",
"cozy-url-sdk": "1.0.2",
"cozydb": "0.1.12",
"express-validator": "3.1.2",
"jade": "1.11.0",
"moment": "2.12.0",
"moment-timezone": "0.5.3",
"multiparty": "4.1.2",
"node-polyglot": "2.0.0",
"printit": "0.1.18",
"pug-runtime": "2.0.0",
"request-json": "0.5.5"
},
"devDependencies": {
"brunch": "1.8.5",
"coffee-script": "1.10.0",
"coffeelint": "1.15.0",
"cozy-url-sdk": "1.0.2",
"jade2commonjs": "0.1.0",
"mocha": "2.4.5",
"nodemon": "1.9.1",
"npm-run-all": "3.1.0",
"should": "8.3.0"
},
"scripts": {
"build": "npm run build:server && npm run build:client && npm run build:views",
"build:client": "cd client && brunch build --production",
"build:server": "./node_modules/.bin/coffee --bare --compile --output build/server server && coffee --bare --compile --output build server.coffee",
"build:views": "./node_modules/.bin/jade2commonjs --no-debug ./build/client/public/",
"clean": "rm -rf build && rm -rf client/public",
"copy:emails": "cp -r server/mails build/server/ && rm build/server/mails/*.coffee",
"copy:locales": "mkdir -p build/client/app/locales && cp -r client/app/locales/*.json build/client/app/locales/",
"ensure:client": "cd client && npm install",
"fixtures:generate": "./node_modules/.bin/coffee test/fixtures/generator.coffee",
"fixtures:load": "cozy-fixtures load test/fixtures",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "./node_modules/.bin/coffeelint client/app -f coffeelint.json",
"lint:server": "./node_modules/.bin/coffeelint server -f coffeelint.json",
"prebuild": "npm run clean && npm run tx",
"prebuild:client": "npm run ensure:client",
"prewatch:client": "npm run ensure:client",
"postbuild": "npm run copy:locales && npm run copy:emails",
"postbuild:views": "rm build/client/public/*.jade",
"start": "node build/server.js",
"test": "cake --use-js tests",
"test:mocha-no-env": "mocha test --reporter spec --colors --globals setImmediate,clearImmediate --compilers coffee:coffee-script/register",
"tx": "tx pull --all || true",
"watch": "npm-run-all --parallel 'watch:*'",
"watch:client": "cd client && brunch watch",
"watch:server": "nodemon --debug --ignore client/ server.coffee"
},
"cozy-permissions": {
"Alarm": {
"description": "Creates and edits your alarms."
},
"Event": {
"description": "Creates and edits your events."
},
"Sharing": {
"description": "Creates and edits what you share to others and what is shared to you"
},
"User": {
"description": "Used to recover your timezone"
},
"CozyInstance": {
"description": "Used to recover your language setting and your cozy's domain"
},
"Contact": {
"description": "Invite your contacts to an event"
},
"Tag": {
"description": "Create new tags and change their color"
},
"send mail from user": {
"description": "Send invitations by mail"
},
"WebDAVAccount": {
"description": "Store webDAV password and sync informations"
},
"Settings": {
"description": "Store user settings related to the calendar application."
}
}
}