jsPsych/packages/plugin-same-different-html/package.json
bjoluc 744e67b0a5 Setup monorepo and switch to ES6 modules
* 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
2021-06-23 22:39:38 +02:00

31 lines
805 B
JSON

{
"name": "@jspsych/plugin-same-different-html",
"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"
}
}