forked from agendav/agendav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.02 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
{
"name": "AgenDAV",
"version": "2.4.0",
"description": "A web CalDAV client",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"clean": "rm -rf node_modules && rm -rf web/public/dist/js/* && rm -rf web/public/dist/css/*",
"composer": "cd web && composer install --no-dev --prefer-dist",
"composer-dev": "cd web && composer install --dev --prefer-source",
"build:templates": "dustc --pwd assets/templates -o assets/templates/templates.js assets/templates/*.dust",
"prebuild:css": "lessc assets/less/agendav.less web/public/dist/css/app.css",
"build:css": "cat web/public/dist/css/app.css assets/css/*.css | cleancss -o web/public/dist/css/agendav.css && cat assets/print-css/*.css | cleancss -o web/public/dist/css/agendav.print.css",
"prebuild:js": "uglifyjs assets/js/core/*.js assets/js/other/*.js assets/js/app/*.js assets/templates/templates.js -b -o web/public/dist/js/agendav.js",
"build:js": "uglifyjs web/public/dist/js/agendav.js -c -m -o web/public/dist/js/agendav.min.js",
"build": "npm run composer && npm run build:templates && npm run build:css && npm run build:js",
"dist-clean": "rm -rf node_modules && rm -rf .git && rm -rf ansible",
"dist": "npm run composer && npm run build:css && npm run build:js && npm run dist-clean"
},
"repository": {
"type": "git",
"url": "https://github.com/adobo/agendav.git"
},
"keywords": [
"CalDAV",
"calendar"
],
"author": "Jorge López Pérez",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/adobo/agendav/issues"
},
"homepage": "https://github.com/adobo/agendav",
"devDependencies": {
"bootstrap": "~3.3.1",
"clean-css": "~3.4.22",
"dustjs-helpers": "~1.7.0",
"dustjs-linkedin": "~2.7.1",
"es5-shim": "~4.0.5",
"font-awesome": "~4.2.0",
"fullcalendar": "~3.8.0",
"jquery": "~3.3.1",
"jquery-migrate": "~3.0.0",
"jquery-ui": "~1.12.1",
"less": "~2.7.1",
"moment-timezone": "~0.5.0",
"rrule": "~2.1.0",
"uglify-js": "~2.7.5"
}
}