-
Notifications
You must be signed in to change notification settings - Fork 504
/
package.json
144 lines (144 loc) · 3.92 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "mosaico",
"version": "0.18.10",
"description": "Mosaico - OpenSource Email Template Editor",
"main": "./src/js/app.js",
"repository": {
"type": "git",
"url": "[email protected]:voidlabs/mosaico.git"
},
"browserify": {
"transform": [
"aliasify",
"browserify-shim",
"browserify-versionify"
]
},
"aliasify": {
"aliases": {
"console": "console-browserify",
"knockoutjs-reactor": "ko-reactor/dist/ko-reactor.min.js",
"tinycolor": "tinycolor2"
}
},
"browserify-shim": {
"jquery": "global:jQuery",
"jquery-ui/ui/widgets/sortable": "global:jQuery.ui.sortable",
"jquery-ui/ui/widgets/draggable": "global:jQuery.ui.draggable",
"jquery-ui/ui/widgets/droppable": "global:jQuery.ui.droppable",
"jquery-ui/ui/widgets/resizable": "global:jQuery.ui.resizable",
"jquery-ui/ui/widgets/spinner": "global:jQuery.ui.spinner",
"jquery-ui/ui/widgets/tabs": "global:jQuery.ui.tabs",
"knockout": "global:ko",
"knockout-jqueryui": "global:kojqui",
"tinymce": "global:tinymce"
},
"dependencies": {
"@selectize/selectize": "^0.14.0",
"blueimp-canvas-to-blob": "3.29.0",
"blueimp-file-upload": "10.32.0",
"blueimp-load-image": "5.16.0",
"console-browserify": "^1.2.0",
"default-passive-events": "^2.0.0",
"evol-colorpicker": "^3.4.3",
"font-awesome": "^4.7.0",
"jquery": "^3.7.0",
"jquery-migrate": "^3.4.1",
"jquery-ui-package": "1.11.4",
"jquery-ui-touch-punch": "^0.2.3",
"jquery.iframe-transport": "^1.0.0",
"jsep": "^0.4.0",
"juice": "^9.1.0",
"knockout": "3.5.1",
"knockout-jqueryui": "2.2.4",
"knockout-sortable": "^1.2.2",
"ko-reactor": "^1.4.2",
"mensch": "^0.3.4",
"slick": "1.12.2",
"tinycolor2": "1.6.0",
"toastr": "^2.1.4"
},
"devDependencies": {
"@lodder/grunt-postcss": "3.1.1",
"aliasify": "2.1.0",
"async": "3.2.4",
"autoprefixer": "^10.4.13",
"body-parser": "1.20.2",
"browserify": "17.0.0",
"browserify-incremental": "3.1.1",
"browserify-shim": "3.8.16",
"browserify-versionify": "^1.0.6",
"cheerio": "1.0.0-rc.12",
"connect-livereload": "0.6.1",
"express": "4.18.2",
"grunt": "^1.5.3",
"grunt-browserify": "6.0.0",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-compress": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "5.0.0",
"grunt-contrib-jshint": "3.2.0",
"grunt-contrib-less": "3.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-contrib-watch": "1.1.0",
"grunt-exorcise": "2.1.1",
"grunt-express-server": "0.5.4",
"grunt-google-fonts": "^0.5.0",
"grunt-jasmine-node-coverage": "2.0.1",
"grunt-keepalive": "^1.0.0",
"grunt-newer": "^1.3.0",
"grunt-parallel": "0.5.1",
"jasmine-core": "5.0.1",
"jimp": "^0.22.8",
"jshint-stylish": "2.2.1",
"license-checker": "25.0.1",
"load-grunt-tasks": "5.1.0",
"lodash": "^4.17.21",
"mockery": "2.1.0",
"multer": "1.4.5-lts.1",
"nodemailer": "6.9.3",
"npm-force-resolutions": "0.0.10",
"postcss": "8.4.24",
"postcss-minify": "^1.1.0",
"tinymce": "4.9.11"
},
"browserslist": [
"last 2 versions",
"not dead",
"> 1%",
"IE 10",
"IE 11"
],
"author": "Stefano Bagnara",
"license": "GPL-3.0",
"licenseurl": "https://www.gnu.org/licenses/gpl-3.0.en.html",
"overrides": {
"async": "3.2.4",
"jpeg-js": "0.4.4",
"minimist": "1.2.6"
},
"scripts": {
"start": "grunt",
"test": "grunt jasmine_node"
},
"engines": {
"node": ">= 15.0.0",
"npm": ">= 8.3.0"
},
"release-it": {
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test",
"grunt check_licenses"
],
"after:bump": [
"grunt dist"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
}
}