@artistanbul/frontend-component-footer-sumac 1.1.0

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/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@artistanbul/frontend-component-footer-sumac",
3
+ "version": "1.1.0",
4
+ "description": "Footer component for use when building Open edX frontend applications",
5
+ "main": "dist/index.js",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "scripts": {
10
+ "build": "make build",
11
+ "i18n_extract": "fedx-scripts formatjs extract",
12
+ "lint": "fedx-scripts eslint --ext .js --ext .jsx .",
13
+ "snapshot": "fedx-scripts jest --updateSnapshot",
14
+ "start": "fedx-scripts webpack-dev-server --progress",
15
+ "start:with-theme": "paragon install-theme && npm start && npm install",
16
+ "test": "fedx-scripts jest --coverage"
17
+ },
18
+ "files": [
19
+ "/dist"
20
+ ],
21
+ "husky": {
22
+ "hooks": {
23
+ "pre-commit": "npm run lint"
24
+ }
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/openedx/frontend-component-footer.git"
29
+ },
30
+ "author": "edX",
31
+ "license": "AGPL-3.0",
32
+ "bugs": {
33
+ "url": "https://github.com/openedx/frontend-component-footer/issues"
34
+ },
35
+ "homepage": "https://github.com/openedx/frontend-component-footer#readme",
36
+ "devDependencies": {
37
+ "@edx/brand": "npm:@openedx/brand-openedx@^1.2.2",
38
+ "@edx/browserslist-config": "^1.1.1",
39
+ "@edx/frontend-platform": "8.1.3",
40
+ "@edx/reactifex": "^2.1.1",
41
+ "@openedx/frontend-build": "14.2.2",
42
+ "@openedx/frontend-plugin-framework": "^1.1.2",
43
+ "@openedx/paragon": "^22.8.1",
44
+ "@testing-library/jest-dom": "^5.16.4",
45
+ "@testing-library/react": "^12.1.1",
46
+ "husky": "8.0.3",
47
+ "prop-types": "15.8.1",
48
+ "react": "17.0.2",
49
+ "react-dom": "17.0.2",
50
+ "react-redux": "7.2.9",
51
+ "react-router-dom": "6.28.1",
52
+ "react-test-renderer": "17.0.2",
53
+ "redux": "4.2.1",
54
+ "semantic-release": "21.1.2"
55
+ },
56
+ "dependencies": {
57
+ "@fortawesome/fontawesome-svg-core": "6.7.2",
58
+ "@fortawesome/free-brands-svg-icons": "6.7.2",
59
+ "@fortawesome/free-regular-svg-icons": "6.7.2",
60
+ "@fortawesome/free-solid-svg-icons": "6.7.2",
61
+ "@fortawesome/react-fontawesome": "0.2.2",
62
+ "classnames": "^2.5.1",
63
+ "jest-environment-jsdom": "^29.7.0",
64
+ "lodash": "^4.17.21",
65
+ "ts-jest": "^29.1.2"
66
+ },
67
+ "peerDependencies": {
68
+ "@edx/frontend-platform": "^7.0.0 || ^8.0.0",
69
+ "@openedx/paragon": ">= 21.11.3 < 23.0.0",
70
+ "prop-types": "^15.5.10",
71
+ "react": "^16.9.0 || ^17.0.0",
72
+ "react-dom": "^16.9.0 || ^17.0.0"
73
+ }
74
+ }