@mjhls/mjh-framework 1.0.293 → 1.0.294
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/README.md +171 -171
- package/dist/cjs/DeckContent.js +9 -9
- package/dist/cjs/DeckQueue.js +1 -1
- package/dist/cjs/{Figure-0681dd7d.js → Figure-167c0214.js} +1 -1
- package/dist/cjs/{GridContent-02acbd72.js → GridContent-fa2e1b56.js} +2 -2
- package/dist/cjs/GridContent.js +2 -2
- package/dist/cjs/IssueContentDeck.js +1 -1
- package/dist/cjs/IssueDeck.js +1 -1
- package/dist/cjs/MasterDeck.js +9 -9
- package/dist/cjs/{Normal-c6ad2f0a.js → Normal-61221bc6.js} +29 -29
- package/dist/cjs/PublicationDeck.js +1 -1
- package/dist/cjs/QueueDeckExpanded.js +1 -1
- package/dist/cjs/{TaxonomyCard-03364755.js → TaxonomyCard-4210753c.js} +1 -1
- package/dist/cjs/TaxonomyCard.js +2 -2
- package/dist/cjs/TemplateNormal.js +1 -1
- package/dist/cjs/ThumbnailCard.js +1 -1
- package/dist/cjs/VideoSeriesListing.js +14 -12
- package/dist/cjs/{YoutubeGroup-98ffbc57.js → YoutubeGroup-39eba427.js} +4 -4
- package/dist/cjs/YoutubeGroup.js +1 -1
- package/dist/cjs/{index-39beccb3.js → index-be0c82be.js} +1 -2
- package/dist/cjs/index.js +536 -548
- package/dist/esm/DeckContent.js +9 -9
- package/dist/esm/DeckQueue.js +1 -1
- package/dist/esm/{Figure-cff72982.js → Figure-9f21ef27.js} +1 -1
- package/dist/esm/{GridContent-96716e42.js → GridContent-88ed988c.js} +1 -1
- package/dist/esm/GridContent.js +2 -2
- package/dist/esm/IssueContentDeck.js +1 -1
- package/dist/esm/IssueDeck.js +1 -1
- package/dist/esm/MasterDeck.js +9 -9
- package/dist/esm/{Normal-73a8596f.js → Normal-3a537c0a.js} +29 -29
- package/dist/esm/PublicationDeck.js +1 -1
- package/dist/esm/QueueDeckExpanded.js +1 -1
- package/dist/esm/{TaxonomyCard-8d8c0d6f.js → TaxonomyCard-1d039949.js} +1 -1
- package/dist/esm/TaxonomyCard.js +2 -2
- package/dist/esm/TemplateNormal.js +1 -1
- package/dist/esm/ThumbnailCard.js +1 -1
- package/dist/esm/VideoSeriesListing.js +14 -12
- package/dist/esm/{YoutubeGroup-562ed456.js → YoutubeGroup-f59297bb.js} +4 -4
- package/dist/esm/YoutubeGroup.js +1 -1
- package/dist/esm/{index-3849e3fe.js → index-73819142.js} +1 -2
- package/dist/esm/index.js +539 -551
- package/package.json +103 -103
package/package.json
CHANGED
|
@@ -1,103 +1,103 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mjhls/mjh-framework",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Foundation Framework",
|
|
5
|
-
"author": "mjh-framework",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/MJHLS/mjh-framework.git"
|
|
10
|
-
},
|
|
11
|
-
"main": "dist/cjs/index.js",
|
|
12
|
-
"module": "dist/esm/index.js",
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": ">=8",
|
|
15
|
-
"npm": ">=5"
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"clean": "rimraf dist",
|
|
19
|
-
"test": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
20
|
-
"test:watch": "react-scripts test --env=jsdom",
|
|
21
|
-
"build": "npm run clean && rollup -c",
|
|
22
|
-
"start": "npm run clean && rollup -c -w",
|
|
23
|
-
"prepare": "yarn run build",
|
|
24
|
-
"predeploy": "cd example && yarn install && yarn run build",
|
|
25
|
-
"deploy": "gh-pages -d example/build"
|
|
26
|
-
},
|
|
27
|
-
"peerDependencies": {
|
|
28
|
-
"next": "^9.0.0",
|
|
29
|
-
"prop-types": "^15.5.4",
|
|
30
|
-
"react": "^15.0.0 || ^16.0.0",
|
|
31
|
-
"react-dom": "^15.0.0 || ^16.0.0",
|
|
32
|
-
"react-share": "^4.0.1",
|
|
33
|
-
"react-bootstrap": "^1.0.0-beta.14"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@brightcove/react-player-loader": "^1.4.0",
|
|
37
|
-
"@rollup/plugin-json": "^4.0.3",
|
|
38
|
-
"@sanity/block-content-to-react": "^2.0.7",
|
|
39
|
-
"@sanity/image-url": "^0.140.15",
|
|
40
|
-
"@svgr/rollup": "^2.4.1",
|
|
41
|
-
"babel-core": "^6.26.3",
|
|
42
|
-
"babel-eslint": "^8.2.5",
|
|
43
|
-
"babel-plugin-external-helpers": "^6.22.0",
|
|
44
|
-
"babel-plugin-transform-runtime": "^6.23.0",
|
|
45
|
-
"babel-preset-env": "^1.7.0",
|
|
46
|
-
"babel-preset-react": "^6.24.1",
|
|
47
|
-
"babel-preset-stage-0": "^6.24.1",
|
|
48
|
-
"cross-env": "^5.1.4",
|
|
49
|
-
"eslint": "^5.0.1",
|
|
50
|
-
"eslint-config-standard": "^11.0.0",
|
|
51
|
-
"eslint-config-standard-react": "^6.0.0",
|
|
52
|
-
"eslint-plugin-import": "^2.13.0",
|
|
53
|
-
"eslint-plugin-node": "^7.0.1",
|
|
54
|
-
"eslint-plugin-promise": "^4.0.0",
|
|
55
|
-
"eslint-plugin-react": "^7.10.0",
|
|
56
|
-
"eslint-plugin-react-hooks": "^2.3.0",
|
|
57
|
-
"eslint-plugin-standard": "^3.1.0",
|
|
58
|
-
"get-youtube-id": "^1.0.1",
|
|
59
|
-
"gh-pages": "^1.2.0",
|
|
60
|
-
"lodash": "^4.17.15",
|
|
61
|
-
"moment": "^2.26.0",
|
|
62
|
-
"moment-timezone": "^0.5.31",
|
|
63
|
-
"next": "^9.2.0",
|
|
64
|
-
"react": "^16.12.0",
|
|
65
|
-
"react-bootstrap": "^1.0.0-beta.16",
|
|
66
|
-
"react-device-detect": "^1.11.14",
|
|
67
|
-
"react-dfp": "^0.17.0",
|
|
68
|
-
"react-dom": "^16.12.0",
|
|
69
|
-
"react-icons": "^3.8.0",
|
|
70
|
-
"react-infinite-scroll-component": "^5.0.4",
|
|
71
|
-
"react-lazyload": "^2.6.5",
|
|
72
|
-
"react-player": "^1.15.2",
|
|
73
|
-
"react-scripts": "^1.1.4",
|
|
74
|
-
"react-share": "^4.0.1",
|
|
75
|
-
"react-social-icons": "^4.1.0",
|
|
76
|
-
"react-visibility-sensor": "^5.1.1",
|
|
77
|
-
"react-youtube": "^7.9.0",
|
|
78
|
-
"rimraf": "^3.0.2",
|
|
79
|
-
"rollup": "^2.7.3",
|
|
80
|
-
"rollup-plugin-babel": "^3.0.7",
|
|
81
|
-
"rollup-plugin-commonjs": "^9.1.3",
|
|
82
|
-
"rollup-plugin-node-builtins": "^2.1.2",
|
|
83
|
-
"rollup-plugin-node-resolve": "^3.3.0",
|
|
84
|
-
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
85
|
-
"rollup-plugin-postcss": "^1.6.2",
|
|
86
|
-
"rollup-plugin-url": "^1.4.0"
|
|
87
|
-
},
|
|
88
|
-
"files": [
|
|
89
|
-
"dist"
|
|
90
|
-
],
|
|
91
|
-
"dependencies": {
|
|
92
|
-
"babel-polyfill": "^6.26.0",
|
|
93
|
-
"cookie": "^0.4.1",
|
|
94
|
-
"downloadjs": "^1.4.7",
|
|
95
|
-
"js-cookie": "^2.2.1",
|
|
96
|
-
"next-cookies": "^2.0.3",
|
|
97
|
-
"react-cookies": "^0.1.1",
|
|
98
|
-
"shortid": "^2.2.15",
|
|
99
|
-
"smoothscroll-polyfill": "^0.4.4",
|
|
100
|
-
"striptags": "^3.1.1",
|
|
101
|
-
"superagent": "^5.2.2"
|
|
102
|
-
}
|
|
103
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mjhls/mjh-framework",
|
|
3
|
+
"version": "1.0.294",
|
|
4
|
+
"description": "Foundation Framework",
|
|
5
|
+
"author": "mjh-framework",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/MJHLS/mjh-framework.git"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/cjs/index.js",
|
|
12
|
+
"module": "dist/esm/index.js",
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=8",
|
|
15
|
+
"npm": ">=5"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"clean": "rimraf dist",
|
|
19
|
+
"test": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
20
|
+
"test:watch": "react-scripts test --env=jsdom",
|
|
21
|
+
"build": "npm run clean && rollup -c",
|
|
22
|
+
"start": "npm run clean && rollup -c -w",
|
|
23
|
+
"prepare": "yarn run build",
|
|
24
|
+
"predeploy": "cd example && yarn install && yarn run build",
|
|
25
|
+
"deploy": "gh-pages -d example/build"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"next": "^9.0.0",
|
|
29
|
+
"prop-types": "^15.5.4",
|
|
30
|
+
"react": "^15.0.0 || ^16.0.0",
|
|
31
|
+
"react-dom": "^15.0.0 || ^16.0.0",
|
|
32
|
+
"react-share": "^4.0.1",
|
|
33
|
+
"react-bootstrap": "^1.0.0-beta.14"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@brightcove/react-player-loader": "^1.4.0",
|
|
37
|
+
"@rollup/plugin-json": "^4.0.3",
|
|
38
|
+
"@sanity/block-content-to-react": "^2.0.7",
|
|
39
|
+
"@sanity/image-url": "^0.140.15",
|
|
40
|
+
"@svgr/rollup": "^2.4.1",
|
|
41
|
+
"babel-core": "^6.26.3",
|
|
42
|
+
"babel-eslint": "^8.2.5",
|
|
43
|
+
"babel-plugin-external-helpers": "^6.22.0",
|
|
44
|
+
"babel-plugin-transform-runtime": "^6.23.0",
|
|
45
|
+
"babel-preset-env": "^1.7.0",
|
|
46
|
+
"babel-preset-react": "^6.24.1",
|
|
47
|
+
"babel-preset-stage-0": "^6.24.1",
|
|
48
|
+
"cross-env": "^5.1.4",
|
|
49
|
+
"eslint": "^5.0.1",
|
|
50
|
+
"eslint-config-standard": "^11.0.0",
|
|
51
|
+
"eslint-config-standard-react": "^6.0.0",
|
|
52
|
+
"eslint-plugin-import": "^2.13.0",
|
|
53
|
+
"eslint-plugin-node": "^7.0.1",
|
|
54
|
+
"eslint-plugin-promise": "^4.0.0",
|
|
55
|
+
"eslint-plugin-react": "^7.10.0",
|
|
56
|
+
"eslint-plugin-react-hooks": "^2.3.0",
|
|
57
|
+
"eslint-plugin-standard": "^3.1.0",
|
|
58
|
+
"get-youtube-id": "^1.0.1",
|
|
59
|
+
"gh-pages": "^1.2.0",
|
|
60
|
+
"lodash": "^4.17.15",
|
|
61
|
+
"moment": "^2.26.0",
|
|
62
|
+
"moment-timezone": "^0.5.31",
|
|
63
|
+
"next": "^9.2.0",
|
|
64
|
+
"react": "^16.12.0",
|
|
65
|
+
"react-bootstrap": "^1.0.0-beta.16",
|
|
66
|
+
"react-device-detect": "^1.11.14",
|
|
67
|
+
"react-dfp": "^0.17.0",
|
|
68
|
+
"react-dom": "^16.12.0",
|
|
69
|
+
"react-icons": "^3.8.0",
|
|
70
|
+
"react-infinite-scroll-component": "^5.0.4",
|
|
71
|
+
"react-lazyload": "^2.6.5",
|
|
72
|
+
"react-player": "^1.15.2",
|
|
73
|
+
"react-scripts": "^1.1.4",
|
|
74
|
+
"react-share": "^4.0.1",
|
|
75
|
+
"react-social-icons": "^4.1.0",
|
|
76
|
+
"react-visibility-sensor": "^5.1.1",
|
|
77
|
+
"react-youtube": "^7.9.0",
|
|
78
|
+
"rimraf": "^3.0.2",
|
|
79
|
+
"rollup": "^2.7.3",
|
|
80
|
+
"rollup-plugin-babel": "^3.0.7",
|
|
81
|
+
"rollup-plugin-commonjs": "^9.1.3",
|
|
82
|
+
"rollup-plugin-node-builtins": "^2.1.2",
|
|
83
|
+
"rollup-plugin-node-resolve": "^3.3.0",
|
|
84
|
+
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
85
|
+
"rollup-plugin-postcss": "^1.6.2",
|
|
86
|
+
"rollup-plugin-url": "^1.4.0"
|
|
87
|
+
},
|
|
88
|
+
"files": [
|
|
89
|
+
"dist"
|
|
90
|
+
],
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"babel-polyfill": "^6.26.0",
|
|
93
|
+
"cookie": "^0.4.1",
|
|
94
|
+
"downloadjs": "^1.4.7",
|
|
95
|
+
"js-cookie": "^2.2.1",
|
|
96
|
+
"next-cookies": "^2.0.3",
|
|
97
|
+
"react-cookies": "^0.1.1",
|
|
98
|
+
"shortid": "^2.2.15",
|
|
99
|
+
"smoothscroll-polyfill": "^0.4.4",
|
|
100
|
+
"striptags": "^3.1.1",
|
|
101
|
+
"superagent": "^5.2.2"
|
|
102
|
+
}
|
|
103
|
+
}
|