@m2c2kit/assessment-color-shapes 0.8.9 → 0.8.10
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/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/package.json +18 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Scott T. Yabiku
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -19,4 +19,4 @@ This package contains the m2c2kit Color Shapes assessment, which is a visual arr
|
|
|
19
19
|
- [Website](https://m2c2-project.github.io/m2c2kit/)
|
|
20
20
|
- [Live Examples](https://m2c2-project.github.io/m2c2kit/docs/category/examples)
|
|
21
21
|
- [Getting Started](https://m2c2-project.github.io/m2c2kit/docs/getting-started)
|
|
22
|
-
- [Interactive
|
|
22
|
+
- [Interactive Tutorials](https://m2c2-project.github.io/m2c2kit/docs/category/tutorials)
|
package/dist/index.js
CHANGED
|
@@ -243,7 +243,7 @@ class ColorShapes extends Game {
|
|
|
243
243
|
const options = {
|
|
244
244
|
name: "Color Shapes",
|
|
245
245
|
id: "color-shapes",
|
|
246
|
-
version: "0.8.
|
|
246
|
+
version: "0.8.10 (25099410)",
|
|
247
247
|
shortDescription: "Color Shapes is a visual array change detection task, measuring intra-item feature binding, where participants determine if shapes change color across two sequential presentations of shape stimuli.",
|
|
248
248
|
longDescription: `Color Shapes is a change detection paradigm used to measure visual short-term memory binding (Parra et al., 2009). Participants are asked to memorize the shapes and colors of three different polygons for 3 seconds. The three polygons are then removed from the screen and re-displayed at different locations, either having the same or different colors. Participants are then asked to decide whether the combination of colors and shapes are the "Same" or "Different" between the study and test phases.`,
|
|
249
249
|
showFps: defaultParameters.show_fps.default,
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m2c2kit/assessment-color-shapes",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.10",
|
|
4
|
+
"description": "A visual array change detection task, measuring intra-item feature binding, where participants determine if shapes change color across two sequential presentations of shape stimuli",
|
|
4
5
|
"scripts": {
|
|
5
6
|
"build": "npm run clean && tsc && rollup -c",
|
|
6
7
|
"clean": "rimraf build build-nobundler dist .rollup.cache tsconfig.tsbuildinfo"
|
|
@@ -17,6 +18,17 @@
|
|
|
17
18
|
"dist/index.d.ts",
|
|
18
19
|
"assets/**"
|
|
19
20
|
],
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": {
|
|
23
|
+
"name": "Scott T. Yabiku",
|
|
24
|
+
"email": "syabiku@gmail.com"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/m2c2-project/m2c2kit.git",
|
|
29
|
+
"directory": "packages/assessment-color-shapes"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://m2c2-project.github.io/m2c2kit",
|
|
20
32
|
"dependencies": {
|
|
21
33
|
"@m2c2kit/addons": "^0.3.3",
|
|
22
34
|
"@m2c2kit/core": "^0.3.6"
|
|
@@ -25,9 +37,12 @@
|
|
|
25
37
|
"@rollup/plugin-node-resolve": "15.1.0",
|
|
26
38
|
"@rollup/plugin-replace": "5.0.2",
|
|
27
39
|
"rimraf": "5.0.1",
|
|
28
|
-
"rollup": "3.25.
|
|
40
|
+
"rollup": "3.25.3",
|
|
29
41
|
"rollup-plugin-copy": "3.4.0",
|
|
30
42
|
"rollup-plugin-esbuild": "5.0.0",
|
|
31
|
-
"typescript": "5.1.
|
|
43
|
+
"typescript": "5.1.6"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18"
|
|
32
47
|
}
|
|
33
48
|
}
|