-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
{
"packageManager": "[email protected]",
"name": "liturgy-components-jquery",
"version": "1.0.0",
"description": "jQuery plugins for liturgical calendar components. A jQuery plugin that creates an html select populated with liturgical calendars supported by the Liturgical Calendar API; a jQuery plugin that creates a form with parameters that are supported by the Liturgical Calendar API; and a jQuery plugin for a webcalendar",
"main": "dist/liturgy-components-jquery.bundle.js",
"module": "dist/liturgy-components-jquery.bundle.js",
"browser": "dist/liturgy-components-jquery.bundle.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"minify": "yarn pnpify gulp compress && yarn pnpify gulp bundle",
"clean": "rimraf ./dist && mkdir dist",
"build": "webpack && yarn minify"
},
"keywords": [
"jquery",
"plugin"
],
"author": "John R. D'Orazio <[email protected]",
"license": "MIT",
"peerDependencies": {
"jquery": ">=3.0.0"
},
"devDependencies": {
"@yarnpkg/pnpify": "^4.1.2",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-terser": "^2.1.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}