layerpro 0.2.4 → 0.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +216 -220
package/package.json CHANGED
@@ -1,222 +1,218 @@
1
1
  {
2
- "name": "layerpro",
3
- "displayName": "layerpro",
4
- "version": "0.2.4",
5
- "description": "Manage your popups and customize them",
6
- "copyright": "Dario Passariello",
7
- "deprecated": false,
8
- "license": "MIT",
9
- "homepage": "https://github.com/passariello/layerpro",
10
- "targets": "web",
11
- "main": "index.tsx",
12
- "author": {
13
- "name": "Dario Passariello",
14
- "url": "https://github.com/passariello/",
15
- "email": "dariopassariello@gmail.com"
16
- },
17
- "support": {
18
- "name": "Dario Passariello",
19
- "url": "https://github.com/passariello/",
20
- "email": "dariopassariello@gmail.com"
21
- },
22
- "company": {},
23
- "contributors": [
24
- {
25
- "name": "Valeria Cala Scaglitta",
26
- "email": "valeriacalascaglitta@gmail.com"
27
- }
28
- ],
29
- "workspaces": [
30
- "mcp"
31
- ],
32
- "PROJECTS": {
33
- "LAYERPRO": {
34
- "API": {
35
- "DIR": "/api/",
36
- "LOCAL": "//api.biglogic.ca",
37
- "PROD": "//api.biglogic.ca",
38
- "DEV": "//api.biglogic.ca"
39
- },
40
- "BASE_PATH": "/",
41
- "TITLE": "LayerPro",
42
- "DESCRIPTION": "",
43
- "PORT": 3000,
44
- "THEME": "default",
45
- "LANGUAGE": "en",
46
- "LOGO": ""
47
- }
48
- },
49
- "app": {
50
- "port": 3000,
51
- "code": "layerpro",
52
- "name": "layerpro",
53
- "type": "beta",
54
- "folder": "/",
55
- "appPort": "",
56
- "main": "index.tsx",
57
- "target": "web",
58
- "proxy": {},
59
- "api": {
60
- "folder": "api",
61
- "dev": "",
62
- "prod": ""
63
- },
64
- "url": {
65
- "dev": "http://localhost"
66
- },
67
- "info": {
68
- "type": "gold",
69
- "code": "layerpro",
70
- "codeRelease": "layerpro"
71
- },
72
- "socket": {
73
- "test": "",
74
- "dev": ""
75
- },
76
- "cdn": {}
77
- },
78
- "cordova": {
79
- "platforms": [
80
- "android"
81
- ]
82
- },
83
- "globals": {
84
- "jQuery": {},
85
- "$": {},
86
- "layerpro": {}
87
- },
88
- "browserslist": {
89
- "production": [
90
- "last 2 Chrome major versions",
91
- "last 2 Firefox major versions",
92
- "last 2 Safari major versions",
93
- "last 2 Edge major versions",
94
- "last 2 Opera versions",
95
- "last 2 iOS major versions",
96
- "last 1 Explorer major version",
97
- "last 1 ChromeAndroid version",
98
- "last 1 UCAndroid version",
99
- "last 1 Samsung version",
100
- "last 1 OperaMini version",
101
- "Firefox ESR",
102
- ">0.2%",
103
- "not dead",
104
- "not op_mini all"
105
- ],
106
- "development": [
107
- "last 1 chrome version",
108
- "last 1 firefox version",
109
- "last 1 safari version"
110
- ]
111
- },
112
- "engines": {
113
- "node": ">=12.0.0"
114
- },
115
- "eslintConfig": {
116
- "globals": {
117
- "window": true,
118
- "dphelper": true,
119
- "layerpro": true
120
- }
121
- },
122
- "keywords": [
123
- "layer",
124
- "popup",
125
- "modal",
126
- "passariello",
127
- "layerpro"
128
- ],
129
- "funding": [
130
- {
131
- "type": "individual",
132
- "url": "https://www.paypal.com/donate/?business=HC7LJ2ZXRRNDL&no_recurring=0&item_name=I+am+a+software+developer.+Just+a+donation+can+help+me+to+have+more+time+to+dedicate+on+this+project&currency_code=CAD"
133
- },
134
- {
135
- "type": "patreon",
136
- "url": "https://www.patreon.com/passariello"
137
- }
138
- ],
139
- "repository": {
140
- "type": "git",
141
- "url": "git+https://github.com/passariello/layerpro.git",
142
- "help": "git+https://github.com/passariello/layerpro.git#readme"
143
- },
144
- "bugs": {
145
- "url": "https://github.com/passariello/layerpro/issues"
146
- },
147
- "scripts": {
148
- "make-dist": "webpack --env NAME=LAYERPRO --env MODE=PROD",
149
- "watch": "npm run dist && webpack --watch --mode development --config webpack.config.js ",
150
- "optimizeSVG": "cd mcp/node && node optimizeSVG.js",
151
- ">-": "--------------",
152
- "git": "cd mcp/node && node gitDeploy",
153
- ">--": "---------------",
154
- "goLive": "cd mcp/node && node goLive",
155
- ">---": "----------------",
156
- "prepublish": "tsc",
157
- "compile-tests": "tsc -p . --outDir out",
158
- "watch-tests": "tsc -p . -w --outDir out",
159
- ">": "----------------",
160
- "update": "cd mcp/node && node npmUpdate",
161
- "backup": "cd mcp/backup && run.bat",
162
- "lint": "eslint {/src/**/*,*}.{js,ts,jsx,tsx} --fix"
163
- },
164
- "devDependencies": {
165
- "@babel/core": "7.23.9",
166
- "@babel/plugin-proposal-class-properties": "7.18.6",
167
- "@babel/plugin-transform-runtime": "7.23.9",
168
- "@babel/preset-env": "7.23.9",
169
- "@babel/preset-react": "7.23.3",
170
- "@babel/preset-typescript": "7.23.3",
171
- "@testing-library/user-event": "^14.5.2",
172
- "@types/jquery": "3.5.29",
173
- "@types/react": "18.2.48",
174
- "@types/react-dom": "18.2.18",
175
- "@typescript-eslint/eslint-plugin": "6.20.0",
176
- "@typescript-eslint/parser": "6.20.0",
177
- "babel-loader": "9.1.3",
178
- "babel-plugin-macros": "3.1.0",
179
- "classnames": "2.5.1",
180
- "cli-confirm": "1.0.1",
181
- "compression-webpack-plugin": "11.0.0",
182
- "concurrently": "8.2.2",
183
- "copy-webpack-plugin": "12.0.2",
184
- "crypto-browserify": "3.12.0",
185
- "css": "3.0.0",
186
- "css-loader": "6.10.0",
187
- "dotenv": "16.4.1",
188
- "eslint": "8.56.0",
189
- "eslint-plugin-import": "2.29.1",
190
- "eslint-plugin-node": "11.1.0",
191
- "eslint-plugin-promise": "6.1.1",
192
- "eslint-plugin-react": "7.33.2",
193
- "eslint-plugin-unicorn": "50.0.1",
194
- "file-loader": "6.2.0",
195
- "fs": "0.0.1-security",
196
- "html-webpack-harddisk-plugin": "2.0.0",
197
- "html-webpack-plugin": "5.6.0",
198
- "https-browserify": "1.0.0",
199
- "jquery": "3.7.1",
200
- "jsdom-worker": "0.3.0",
201
- "jshint": "^2.13.6",
202
- "less": "4.2.0",
203
- "less-loader": "12.2.0",
204
- "moment": "2.30.1",
205
- "os-browserify": "0.3.0",
206
- "path": "0.12.7",
207
- "progress-bar-webpack-plugin": "2.1.0",
208
- "react": "18.2.0",
209
- "react-dom": "18.2.0",
210
- "sass": "1.70.0",
211
- "sass-loader": "14.1.0",
212
- "stream-browserify": "3.0.0",
213
- "stream-http": "3.2.0",
214
- "style-loader": "3.3.4",
215
- "terser-webpack-plugin": "5.3.10",
216
- "typescript": "5.3.3",
217
- "webpack": "5.90.0",
218
- "webpack-cli": "5.1.4",
219
- "webpack-dev-server": "4.15.1",
220
- "@babel/plugin-proposal-object-rest-spread": "7.20.7"
221
- }
2
+ "name": "layerpro",
3
+ "displayName": "layerpro",
4
+ "version": "0.2.6",
5
+ "description": "Manage your popups and customize them",
6
+ "copyright": "Dario Passariello",
7
+ "deprecated": false,
8
+ "license": "MIT",
9
+ "homepage": "https://github.com/passariello/layerpro",
10
+ "targets": "web",
11
+ "main": "index.tsx",
12
+ "author": {
13
+ "name": "Dario Passariello",
14
+ "url": "https://github.com/passariello/",
15
+ "email": "dariopassariello@gmail.com"
16
+ },
17
+ "support": {
18
+ "name": "Dario Passariello",
19
+ "url": "https://github.com/passariello/",
20
+ "email": "dariopassariello@gmail.com"
21
+ },
22
+ "company": {},
23
+ "contributors": [
24
+ {
25
+ "name": "Valeria Cala Scaglitta",
26
+ "email": "valeriacalascaglitta@gmail.com"
27
+ }
28
+ ],
29
+ "workspaces": [
30
+ "mcp"
31
+ ],
32
+ "PROJECTS": {
33
+ "LAYERPRO": {
34
+ "API": {
35
+ "DIR": "/api/",
36
+ "LOCAL": "//api.biglogic.ca",
37
+ "PROD": "//api.biglogic.ca",
38
+ "DEV": "//api.biglogic.ca"
39
+ },
40
+ "BASE_PATH": "/",
41
+ "TITLE": "LayerPro",
42
+ "DESCRIPTION": "",
43
+ "PORT": 3000,
44
+ "THEME": "default",
45
+ "LANGUAGE": "en",
46
+ "LOGO": ""
47
+ }
48
+ },
49
+ "app": {
50
+ "port": 3000,
51
+ "code": "layerpro",
52
+ "name": "layerpro",
53
+ "type": "beta",
54
+ "folder": "/",
55
+ "appPort": "",
56
+ "main": "index.tsx",
57
+ "target": "web",
58
+ "proxy": {},
59
+ "api": {
60
+ "folder": "api",
61
+ "dev": "",
62
+ "prod": ""
63
+ },
64
+ "url": {
65
+ "dev": "http://localhost"
66
+ },
67
+ "info": {
68
+ "type": "gold",
69
+ "code": "layerpro",
70
+ "codeRelease": "layerpro"
71
+ },
72
+ "socket": {
73
+ "test": "",
74
+ "dev": ""
75
+ },
76
+ "cdn": {}
77
+ },
78
+ "cordova": {
79
+ "platforms": [
80
+ "android"
81
+ ]
82
+ },
83
+ "globals": {
84
+ "jQuery": {},
85
+ "$": {},
86
+ "layerpro": {}
87
+ },
88
+ "browserslist": {
89
+ "production": [
90
+ "last 2 Chrome major versions",
91
+ "last 2 Firefox major versions",
92
+ "last 2 Safari major versions",
93
+ "last 2 Edge major versions",
94
+ "last 2 Opera versions",
95
+ "last 2 iOS major versions",
96
+ "last 1 Explorer major version",
97
+ "last 1 ChromeAndroid version",
98
+ "last 1 UCAndroid version",
99
+ "last 1 Samsung version",
100
+ "last 1 OperaMini version",
101
+ "Firefox ESR",
102
+ ">0.2%",
103
+ "not dead",
104
+ "not op_mini all"
105
+ ],
106
+ "development": [
107
+ "last 1 chrome version",
108
+ "last 1 firefox version",
109
+ "last 1 safari version"
110
+ ]
111
+ },
112
+ "engines": {
113
+ "node": ">=12.0.0"
114
+ },
115
+ "eslintConfig": {
116
+ "globals": {
117
+ "window": true,
118
+ "dphelper": true,
119
+ "layerpro": true
120
+ }
121
+ },
122
+ "keywords": [
123
+ "layer",
124
+ "popup",
125
+ "modal",
126
+ "passariello",
127
+ "layerpro"
128
+ ],
129
+ "repository": {
130
+ "type": "git",
131
+ "url": "git+https://github.com/passariello/layerpro.git",
132
+ "help": "git+https://github.com/passariello/layerpro.git#readme"
133
+ },
134
+ "bugs": {
135
+ "url": "https://github.com/passariello/layerpro/issues"
136
+ },
137
+ "scripts": {
138
+ "make-dist": "webpack --env NAME=LAYERPRO --env MODE=PROD",
139
+ "watch": "npm run dist && webpack --watch --mode development --config webpack.config.js ",
140
+ "optimizeSVG": "cd mcp/node && node optimizeSVG.js",
141
+ ">-": "--------------",
142
+ "git": "cd mcp/node && node gitDeploy",
143
+ ">--": "---------------",
144
+ "goLive": "cd mcp/node && node goLive",
145
+ ">---": "----------------",
146
+ "prepublish1": "tsc",
147
+ "compile-tests": "tsc -p . --outDir out",
148
+ "watch-tests": "tsc -p . -w --outDir out",
149
+ ">": "----------------",
150
+ "update": "cd mcp/node && node npmUpdate",
151
+ "backup": "cd mcp/backup && run.bat",
152
+ "lint": "eslint {/src/**/*,*}.{js,ts,jsx,tsx} --fix"
153
+ },
154
+ "devDependencies": {
155
+ "@babel/core": "7.23.9",
156
+ "@babel/eslint-parser": "^7.23.10",
157
+ "@babel/plugin-proposal-class-properties": "7.18.6",
158
+ "@babel/plugin-transform-runtime": "7.23.9",
159
+ "@babel/preset-env": "7.23.9",
160
+ "@babel/preset-react": "7.23.3",
161
+ "@babel/preset-typescript": "7.23.3",
162
+ "@testing-library/user-event": "^14.5.2",
163
+ "@types/jquery": "3.5.29",
164
+ "@types/node": "^20.11.16",
165
+ "@types/react": "18.2.55",
166
+ "@types/react-dom": "18.2.18",
167
+ "@types/webpack": "5.28.5",
168
+ "@typescript-eslint/eslint-plugin": "6.21.0",
169
+ "@typescript-eslint/parser": "6.21.0",
170
+ "babel-loader": "9.1.3",
171
+ "babel-plugin-macros": "3.1.0",
172
+ "classnames": "2.5.1",
173
+ "cli-confirm": "1.0.1",
174
+ "compression-webpack-plugin": "11.0.0",
175
+ "concurrently": "8.2.2",
176
+ "copy-webpack-plugin": "12.0.2",
177
+ "crypto-browserify": "3.12.0",
178
+ "css": "3.0.0",
179
+ "css-loader": "6.10.0",
180
+ "dotenv": "16.4.1",
181
+ "eslint": "^8.56.0",
182
+ "eslint-plugin-cypress": "2.15.1",
183
+ "eslint-plugin-import": "2.29.1",
184
+ "eslint-plugin-node": "11.1.0",
185
+ "eslint-plugin-promise": "6.1.1",
186
+ "eslint-plugin-react": "7.33.2",
187
+ "eslint-plugin-unicorn": "51.0.1",
188
+ "file-loader": "6.2.0",
189
+ "fs": "0.0.1-security",
190
+ "html-webpack-harddisk-plugin": "2.0.0",
191
+ "html-webpack-plugin": "5.6.0",
192
+ "https-browserify": "1.0.0",
193
+ "jquery": "3.7.1",
194
+ "jsdom-worker": "0.3.0",
195
+ "jshint": "^2.13.6",
196
+ "less": "4.2.0",
197
+ "less-loader": "12.2.0",
198
+ "moment": "2.30.1",
199
+ "os-browserify": "0.3.0",
200
+ "path": "0.12.7",
201
+ "progress-bar-webpack-plugin": "2.1.0",
202
+ "react": "18.2.0",
203
+ "react-dom": "18.2.0",
204
+ "sass": "1.70.0",
205
+ "sass-loader": "14.1.0",
206
+ "stream-browserify": "3.0.0",
207
+ "stream-http": "3.2.0",
208
+ "style-loader": "3.3.4",
209
+ "terser-webpack-plugin": "5.3.10",
210
+ "typescript": "5.3.3",
211
+ "webpack": "5.90.1",
212
+ "webpack-cli": "5.1.4",
213
+ "webpack-dev-server": "4.15.1"
214
+ },
215
+ "dependencies": {
216
+ "semantic-release": "23.0.1"
217
+ }
222
218
  }