mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 16:18:11 +00:00

* Convert jsPsych and plugins to ES6 modules * Create packages for each plugin, the core library, and config files * Setup rollup, jest, and babel configurations * Update jsPsych to load plugin objects directly from the `type` field * Update tests to use the ES6 modules
31 lines
806 B
JSON
31 lines
806 B
JSON
{
|
|
"name": "@jspsych/plugin-same-different-image",
|
|
"version": "1.0.0",
|
|
"description": "jsPsych plugin for showing two stimuli sequentially and getting a same / different judgment",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"unpkg": "dist/index.min.js",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "jest --config jest.config.cjs --passWithNoTests",
|
|
"build": "rollup --config rollup.config.mjs",
|
|
"watch": "npm run build -- --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jspsych/jsPsych.git"
|
|
},
|
|
"author": "Josh de Leeuw",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/jspsych/jsPsych/issues"
|
|
},
|
|
"homepage": "https://github.com/jspsych/jsPsych#readme",
|
|
"peerDependencies": {
|
|
"jspsych": ">=7"
|
|
}
|
|
}
|