-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 4.22 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
{
"author": "Paul Derscheid <paul.derscheid@lmscloud.de>",
"bugs": {
"url": "https://github.com/LMSCloud/LMSRoomReservations/issues"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@granite-elements/granite-lit-bootstrap": "4.6.0-0",
"@juggle/resize-observer": "^3.4.0",
"@types/bidirectional-map": "^1.0.2",
"@weavedev/lit-fontawesome": "^0.3.2",
"bidirectional-map": "^1.1.1",
"country-to-currency": "^1.0.11",
"datetime": "0.0.3",
"dayjs": "^1.11.9",
"gettext.js": "^1.2.0",
"gulp-replace": "^0.6.1",
"jsonfile": "^4.0.0",
"lit": "^2.8.0",
"lit-element-state": "^1.7.0",
"node-datetime": "^2.1.2"
},
"description": "Koha Room Reservations Plugin",
"devDependencies": {
"@esm-bundle/chai": "4.3.4-fix.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@tailwindcss/typography": "^0.5.9",
"@types/gettext.js": "^1.0.0",
"@web/dev-server-legacy": "^1.0.3",
"@web/test-runner": "^0.15.3",
"autoprefixer": "^10.4.15",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"daisyui": "^3.5.1",
"eslint": "^8.47.0",
"eslint-plugin-lit": "^1.9.1",
"eslint-plugin-lit-a11y": "^2.4.1",
"eslint-plugin-wc": "^1.5.0",
"gulp": "^4.0.2",
"gulp-cli": "^1.4.0",
"gulp-github-release": "^1.2.1",
"gulp-run": "^1.7.1",
"jsdom": "^21.1.2",
"mocha": "^10.2.0",
"po2json": "1.0.0-beta-3",
"postcss": "^8.4.28",
"postcss-lit": "^1.1.0",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"rollup": "^2.79.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-html-literals": "^1.1.6",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-postcss": "^4.0.2",
"sinon": "^15.2.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"tailwindcss": "^3.3.3",
"ts-lit-plugin": "^1.2.1",
"tslib": "^2.6.2",
"winston": "^3.10.0",
"zod": "^3.22.2"
},
"homepage": "https://github.com/LMSCloud/LMSRoomReservations#readme",
"license": "GPL-3.0",
"minimum_koha_version": "21.05.14.000",
"name": "lms-room-reservations",
"previous_version": "4.8.3",
"repository": {
"type": "git",
"url": "git+https://github.com/LMSCloud/LMSRoomReservations.git"
},
"scripts": {
"archive": "./tools/archive.mjs",
"build": "npm run format && ./tools/generate_tw_css_result.mjs -o src && npx rollup -c && p-kpz -r \"lms-room-reservations\" -p \"Koha/Plugin/Com/LMSCloud/RoomReservations.pm\"",
"build:no-fmt": "./tools/generate_tw_css_result.mjs -o src && npx rollup -c && p-kpz -r \"lms-room-reservations\" -p \"Koha/Plugin/Com/LMSCloud/RoomReservations.pm\"",
"css:build": "./tools/generate_tw_css_result.mjs -o src",
"docs:package": "./tools/generate_docs.mjs",
"format": "npm run format:ts && npm run format:pl",
"format:ts": "prettier --write --cache --cache-location .prettier.cache.json \"src/**/*.ts\"",
"format:pl": "perltidyc --cache --cache-location .perltidy.cache.json $(find Koha/Plugin -type f -name '*.pl' -o -name '*.pm')",
"lint": "eslint \"src/**/*.{js,ts}\"",
"test": "mocha \"test/**/*.test.mjs\"",
"translate:extract": "./tools/extract_translations.sh --output com.lmscloud.roomreservations.pot --source \"src/*.ts\" --source \"src/**/*.ts\" --source \"src/components/**/*.ts\" --source \"src/lib/**/*.ts\" --source \"src/lib/**/**/*.ts\" --source \"src/lib/**/**/**/*.ts\" --source \"src/lib/**/**/**/**/*.ts\" --source \"Koha/Plugin/Com/LMSCloud/RoomReservations/**/*.pm\" --source \"Koha/Plugin/Com/LMSCloud/RoomReservations/**/**/*.pm\" --template \"Koha/Plugin/Com/LMSCloud/RoomReservations/views/**/*.tt\"",
"translate:instantiate": "[[ -z \"$LOCALE\" ]] && echo \"LOCALE not set\" || (if [ ! -f locales/$LOCALE.po ]; then msginit --input=com.lmscloud.roomreservations.pot --locale=$LOCALE --output-file=locales/$LOCALE.po; else msgmerge --update locales/$LOCALE.po com.lmscloud.roomreservations.pot; fi)",
"translate:package": "./tools/package_translations.mjs && ./tools/add_static_routes.mjs"
},
"version": "4.8.5"
}