jsPsych/packages/plugin-same-different-image/package.json
Josh de Leeuw a6d5851a6b
Merge pull request #2363 from jspsych/update-peer-depend
Update the peer dependencies in package.json
2021-11-30 17:17:54 -05:00

44 lines
1.1 KiB
JSON

{
"name": "@jspsych/plugin-same-different-image",
"version": "1.1.0",
"description": "jsPsych plugin for showing two stimuli sequentially and getting a same / different judgment",
"type": "module",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"typings": "dist/index.d.ts",
"unpkg": "dist/index.browser.min.js",
"files": [
"src",
"dist"
],
"source": "src/index.ts",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"tsc": "tsc",
"build": "rollup --config",
"build:watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jspsych/jsPsych.git",
"directory": "packages/plugin-same-different-image"
},
"author": "Josh de Leeuw",
"license": "MIT",
"bugs": {
"url": "https://github.com/jspsych/jsPsych/issues"
},
"homepage": "https://www.jspsych.org/latest/plugins/same-different-image",
"peerDependencies": {
"jspsych": ">=7.1.0"
},
"devDependencies": {
"@jspsych/config": "^1.1.0",
"@jspsych/test-utils": "^1.1.0"
}
}