layerpro 0.0.47 → 0.0.52
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.
- package/.github/FUNDING.yml +12 -12
- package/.github/dependabot.yml +12 -12
- package/{LICENSE → LICENSE.txt} +1 -1
- package/README.md +4 -0
- package/SECURITY.md +3 -0
- package/index.js +1 -1
- package/index.js.LICENSE.txt +9 -37
- package/package.json +18 -16
package/index.js.LICENSE.txt
CHANGED
|
@@ -1,36 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
@license MIT
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*!
|
|
8
|
-
* Sizzle CSS Selector Engine v2.3.6
|
|
9
|
-
* https://sizzlejs.com/
|
|
10
|
-
*
|
|
11
|
-
* Copyright JS Foundation and other contributors
|
|
12
|
-
* Released under the MIT license
|
|
13
|
-
* https://js.foundation/
|
|
14
|
-
*
|
|
15
|
-
* Date: 2021-02-16
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
/*!
|
|
19
|
-
* jQuery JavaScript Library v3.6.0
|
|
20
|
-
* https://jquery.com/
|
|
21
|
-
*
|
|
22
|
-
* Includes Sizzle.js
|
|
23
|
-
* https://sizzlejs.com/
|
|
24
|
-
*
|
|
25
|
-
* Copyright OpenJS Foundation and other contributors
|
|
26
|
-
* Released under the MIT license
|
|
27
|
-
* https://jquery.org/license
|
|
28
|
-
*
|
|
29
|
-
* Date: 2021-03-02T17:08Z
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
/** @license React v0.20.2
|
|
33
|
-
* scheduler.production.min.js
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react-dom.production.min.js
|
|
34
4
|
*
|
|
35
5
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
36
6
|
*
|
|
@@ -38,8 +8,9 @@ object-assign
|
|
|
38
8
|
* LICENSE file in the root directory of this source tree.
|
|
39
9
|
*/
|
|
40
10
|
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
11
|
+
/**
|
|
12
|
+
* @license React
|
|
13
|
+
* react.production.min.js
|
|
43
14
|
*
|
|
44
15
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
45
16
|
*
|
|
@@ -47,8 +18,9 @@ object-assign
|
|
|
47
18
|
* LICENSE file in the root directory of this source tree.
|
|
48
19
|
*/
|
|
49
20
|
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
21
|
+
/**
|
|
22
|
+
* @license React
|
|
23
|
+
* scheduler.production.min.js
|
|
52
24
|
*
|
|
53
25
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
54
26
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "layerpro",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.52",
|
|
4
4
|
"description": "Manage your popups and customize them",
|
|
5
5
|
"deprecated": false,
|
|
6
6
|
"appCode": "layerpro",
|
|
@@ -26,11 +26,10 @@
|
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"make-dist": "webpack --progress --color --mode production --config webpack.config.js",
|
|
29
|
-
"git": "
|
|
30
|
-
"git-
|
|
29
|
+
"git": "cd node && node gitDeploy",
|
|
30
|
+
"git-tag": "cd node && node createTag",
|
|
31
31
|
"backup": "backup.bat",
|
|
32
|
-
"goLive": "
|
|
33
|
-
"publish": "cd public && npm version patch --force && cd .. && npm version patch --force && webpack --progress --color --mode production --config webpack.config.js && npm run git && cd dist && npm publish"
|
|
32
|
+
"goLive": "cd node && node goLive"
|
|
34
33
|
},
|
|
35
34
|
"eslintConfig": {
|
|
36
35
|
"globals": {
|
|
@@ -51,7 +50,9 @@
|
|
|
51
50
|
"keywords": [
|
|
52
51
|
"layer",
|
|
53
52
|
"popup",
|
|
54
|
-
"modal"
|
|
53
|
+
"modal",
|
|
54
|
+
"passariello",
|
|
55
|
+
"layerpro"
|
|
55
56
|
],
|
|
56
57
|
"license": "MIT",
|
|
57
58
|
"homepage": "https://github.com/passariello/layerpro",
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
78
|
"css-loader": "6.7.1",
|
|
78
|
-
"eslint": "8.
|
|
79
|
+
"eslint": "8.13.0",
|
|
79
80
|
"file-loader": "6.2.0",
|
|
80
81
|
"jest": "27.5.1",
|
|
81
82
|
"less-loader": "10.2.0",
|
|
@@ -90,11 +91,12 @@
|
|
|
90
91
|
"@babel/preset-react": "7.16.7",
|
|
91
92
|
"@babel/preset-typescript": "7.16.7",
|
|
92
93
|
"@testing-library/jest-dom": "^5.16.2",
|
|
93
|
-
"@testing-library/user-event": "^
|
|
94
|
-
"babel-loader": "8.2.
|
|
94
|
+
"@testing-library/user-event": "^14.0.0",
|
|
95
|
+
"babel-loader": "8.2.5",
|
|
95
96
|
"classnames": "2.3.1",
|
|
97
|
+
"cli-confirm": "1.0.1",
|
|
96
98
|
"compression-webpack-plugin": "9.2.0",
|
|
97
|
-
"concurrently": "7.
|
|
99
|
+
"concurrently": "7.1.0",
|
|
98
100
|
"copy-webpack-plugin": "10.2.4",
|
|
99
101
|
"css": "3.0.0",
|
|
100
102
|
"dotenv": "16.0.0",
|
|
@@ -104,14 +106,14 @@
|
|
|
104
106
|
"jsdom-worker": "0.2.1",
|
|
105
107
|
"jshint": "^2.13.4",
|
|
106
108
|
"less": "4.1.2",
|
|
109
|
+
"moment": "2.29.3",
|
|
107
110
|
"path": "0.12.7",
|
|
108
111
|
"progress-bar-webpack-plugin": "2.1.0",
|
|
109
|
-
"react": "
|
|
110
|
-
"react-dom": "
|
|
112
|
+
"react": "18.0.0",
|
|
113
|
+
"react-dom": "18.0.0",
|
|
111
114
|
"require": "2.4.20",
|
|
112
|
-
"sass": "1.
|
|
113
|
-
"ts-jest": "27.1.
|
|
114
|
-
"
|
|
115
|
-
"webpack": "5.70.0"
|
|
115
|
+
"sass": "1.50.1",
|
|
116
|
+
"ts-jest": "27.1.4",
|
|
117
|
+
"webpack": "5.72.0"
|
|
116
118
|
}
|
|
117
119
|
}
|