@instructure/quiz-core 22.7.0 → 22.7.1-rc.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 +34 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/quiz-core",
|
|
3
|
-
"version": "22.7.0",
|
|
3
|
+
"version": "22.7.1-rc.0+f2402979f",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The Quiz React SDK by Instructure Inc.",
|
|
6
6
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
@@ -10,6 +10,27 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://gerrit.instructure.com/quizzes-ui.git"
|
|
12
12
|
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"clean": "ui-build --clean",
|
|
15
|
+
"build": "build-if-changed",
|
|
16
|
+
"build:all": "ui-build --modules es,cjs",
|
|
17
|
+
"build:watch": "ui-build --watch",
|
|
18
|
+
"extract": "extract-translations",
|
|
19
|
+
"lint": "ui-test --lint",
|
|
20
|
+
"lint:fix": "ui-test --lint --fix",
|
|
21
|
+
"eslint:fix": "eslint --fix .",
|
|
22
|
+
"prelint": "pnpm build",
|
|
23
|
+
"pretest": "pnpm build",
|
|
24
|
+
"test": "pnpm test:karma",
|
|
25
|
+
"test:karma": "ui-test",
|
|
26
|
+
"test:watch": "ui-test --watch",
|
|
27
|
+
"snyk:monitor": "snyk monitor",
|
|
28
|
+
"postbuild": "cp src/banks/components/noResults.svg lib/banks/components/; cp src/banks/components/noResults.svg es/banks/components/; pnpm postbuild:errorImage",
|
|
29
|
+
"postbuild:all": "pnpm postbuild",
|
|
30
|
+
"postbuild:errorImage": "cp src/reporting/components/resources/NewQuizAndItemAnalysis/downForRepair.svg es/reporting/components/resources/NewQuizAndItemAnalysis/; cp src/reporting/components/resources/NewQuizAndItemAnalysis/downForRepair.svg lib/reporting/components/resources/NewQuizAndItemAnalysis/",
|
|
31
|
+
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
32
|
+
"typecheck": "tsc --noEmit"
|
|
33
|
+
},
|
|
13
34
|
"keywords": [
|
|
14
35
|
"react",
|
|
15
36
|
"react-component",
|
|
@@ -25,6 +46,11 @@
|
|
|
25
46
|
"@instructure/emotion": "10.14.0",
|
|
26
47
|
"@instructure/grading-utils": "^1.0.0",
|
|
27
48
|
"@instructure/outcomes-ui": "3.2.3",
|
|
49
|
+
"@instructure/quiz-common": "22.7.1-rc.0+f2402979f",
|
|
50
|
+
"@instructure/quiz-i18n": "22.7.1-rc.0+f2402979f",
|
|
51
|
+
"@instructure/quiz-interactions": "22.7.1-rc.0+f2402979f",
|
|
52
|
+
"@instructure/quiz-number-input": "22.7.1-rc.0+f2402979f",
|
|
53
|
+
"@instructure/quiz-rce": "22.7.1-rc.0+f2402979f",
|
|
28
54
|
"@instructure/ui-a11y-content": "10.14.0",
|
|
29
55
|
"@instructure/ui-alerts": "10.14.0",
|
|
30
56
|
"@instructure/ui-avatar": "10.14.0",
|
|
@@ -83,6 +109,7 @@
|
|
|
83
109
|
"file-saver": "~2.0.5",
|
|
84
110
|
"humps": "^2.0.0",
|
|
85
111
|
"immutable": "^3.8.1",
|
|
112
|
+
"instructure-validations": "22.7.1-rc.0+f2402979f",
|
|
86
113
|
"ipaddr.js": "^1.5.4",
|
|
87
114
|
"isomorphic-fetch": "^2.2.0",
|
|
88
115
|
"isuuid": "^0.1.0",
|
|
@@ -110,15 +137,10 @@
|
|
|
110
137
|
"scriptjs": "^2.5.8",
|
|
111
138
|
"store": "^1.3.20",
|
|
112
139
|
"striptags": "^2.0.0",
|
|
113
|
-
"uuid": "^3.2.1"
|
|
114
|
-
"@instructure/quiz-common": "22.7.0",
|
|
115
|
-
"@instructure/quiz-i18n": "22.7.0",
|
|
116
|
-
"@instructure/quiz-interactions": "22.7.0",
|
|
117
|
-
"@instructure/quiz-number-input": "22.7.0",
|
|
118
|
-
"@instructure/quiz-rce": "22.7.0",
|
|
119
|
-
"instructure-validations": "22.7.0"
|
|
140
|
+
"uuid": "^3.2.1"
|
|
120
141
|
},
|
|
121
142
|
"devDependencies": {
|
|
143
|
+
"@instructure/quiz-scripts": "21.0.0",
|
|
122
144
|
"@instructure/ui-axe-check": "10.14.0",
|
|
123
145
|
"@instructure/ui-test-utils": "^7.22.1",
|
|
124
146
|
"@testing-library/react": "^12.1.5",
|
|
@@ -136,6 +158,7 @@
|
|
|
136
158
|
"jquery": "^2.2.3",
|
|
137
159
|
"karma-junit-reporter": "^2.0.1",
|
|
138
160
|
"most-subject": "^5.3.0",
|
|
161
|
+
"quiz-presets": "22.7.1-rc.0+f2402979f",
|
|
139
162
|
"react": "^16.8.6",
|
|
140
163
|
"react-addons-test-utils": "^15.6.2",
|
|
141
164
|
"react-dom": "^16.8.6",
|
|
@@ -143,9 +166,7 @@
|
|
|
143
166
|
"redux-mock-store": "^1.3.0",
|
|
144
167
|
"request": "^2.74.0",
|
|
145
168
|
"sinon": "^6.1.3",
|
|
146
|
-
"sinon-chai": "^3.3.0"
|
|
147
|
-
"@instructure/quiz-scripts": "21.0.0",
|
|
148
|
-
"quiz-presets": "22.7.0"
|
|
169
|
+
"sinon-chai": "^3.3.0"
|
|
149
170
|
},
|
|
150
171
|
"peerDependencies": {
|
|
151
172
|
"react": "^15 || ^16"
|
|
@@ -153,25 +174,5 @@
|
|
|
153
174
|
"publishConfig": {
|
|
154
175
|
"access": "public"
|
|
155
176
|
},
|
|
156
|
-
"
|
|
157
|
-
|
|
158
|
-
"build": "build-if-changed",
|
|
159
|
-
"build:all": "ui-build --modules es,cjs",
|
|
160
|
-
"build:watch": "ui-build --watch",
|
|
161
|
-
"extract": "extract-translations",
|
|
162
|
-
"lint": "ui-test --lint",
|
|
163
|
-
"lint:fix": "ui-test --lint --fix",
|
|
164
|
-
"eslint:fix": "eslint --fix .",
|
|
165
|
-
"prelint": "pnpm build",
|
|
166
|
-
"pretest": "pnpm build",
|
|
167
|
-
"test": "pnpm test:karma",
|
|
168
|
-
"test:karma": "ui-test",
|
|
169
|
-
"test:watch": "ui-test --watch",
|
|
170
|
-
"snyk:monitor": "snyk monitor",
|
|
171
|
-
"postbuild": "cp src/banks/components/noResults.svg lib/banks/components/; cp src/banks/components/noResults.svg es/banks/components/; pnpm postbuild:errorImage",
|
|
172
|
-
"postbuild:all": "pnpm postbuild",
|
|
173
|
-
"postbuild:errorImage": "cp src/reporting/components/resources/NewQuizAndItemAnalysis/downForRepair.svg es/reporting/components/resources/NewQuizAndItemAnalysis/; cp src/reporting/components/resources/NewQuizAndItemAnalysis/downForRepair.svg lib/reporting/components/resources/NewQuizAndItemAnalysis/",
|
|
174
|
-
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
175
|
-
"typecheck": "tsc --noEmit"
|
|
176
|
-
}
|
|
177
|
-
}
|
|
177
|
+
"gitHead": "f2402979f8bd853706438cf9b54db0de54c26ec9"
|
|
178
|
+
}
|