-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.85 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.85 KB
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
{
"name": "koha-snippets",
"version": "1.0.0",
"description": "code to be pasted into Koha's admin side",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"gulp": "^5.0.1",
"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.1.0",
"gulp-sass": "^6.0.1",
"gulp-uglify": "^3.0.2",
"postcss": "^8.5.8",
"sass": "^1.99.0",
"stylelint": "^17.4.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-order": "^8.1.1",
"stylelint-scss": "^7.0.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'",
"lint": "gulp lint; stylelint --cache --fix **/*.scss; ",
"test": "gulp lint; stylelint --cache --fix **/*.scss; "
},
"author": "phette23 <phette23@gmail.com> (http://phette.net)",
"license": "ECL-2.0"
}