-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.86 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
{
"name": "koha-snippets",
"version": "1.0.0",
"description": "code to be pasted into Koha's admin side",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-iife": "^0.4.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sass-lint": "^1.4.0",
"gulp-uglify": "^3.0.2",
"postcss": "^8.4.47",
"stylelint": "^16.9.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cca/koha_snippets.git"
},
"scripts": {
"build": "gulp",
"ajs": "gulp admin-js && cat dist/IntranetUserJS.js | pbcopy && open 'https://library-staff.cca.edu/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=IntranetUserJS'",
"acss": "gulp admin-css && cat dist/IntranetUserCSS.css | pbcopy && open 'https://library-staff.cca.edu/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=IntranetUserCSS'",
"cjs": "gulp catalog-js && cat dist/OPACUserJS.js | pbcopy && open 'https://library-staff.cca.edu/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACUserJS'",
"ccss": "gulp catalog-css && cat dist/OPACUserCSS.css | pbcopy && open 'https://library-staff.cca.edu/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACUserCSS'",
"cookiejs": "gulp cookie-js && cat dist/CookieConsentedJS.js | pbcopy && open 'https://library-staff.cca.edu/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=CookieConsentedJS'",
"test": "gulp lint; stylelint --cache --fix **/*.scss 2>/dev/null; "
},
"author": "phette23 <phette23@gmail.com> (http://phette.net)",
"license": "ECL-2.0",
"dependencies": {
"sass": "^1.79.4"
}
}