mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 16:18:11 +00:00
![github-actions[bot]](/assets/img/avatar_default.png)
* chore(release): version packages * edit changelogs --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Becky Gilbert <beckyannegilbert@gmail.com>
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "@jspsych/plugin-survey",
|
|
"version": "1.0.1",
|
|
"description": "A jsPsych plugin for complex surveys",
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./css/survey.css": "./css/survey.css",
|
|
"./css/survey.scss": "./css/survey.scss"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"unpkg": "dist/index.browser.min.js",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"css"
|
|
],
|
|
"source": "src/index.ts",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:watch": "npm test -- --watch",
|
|
"tsc": "tsc",
|
|
"build:js": "rollup --config",
|
|
"build:styles": "sass --load-path ./node_modules --load-path ../../node_modules css/survey.scss css/survey.css",
|
|
"build": "run-p build:js build:styles",
|
|
"build:watch": "run-p \"build:js -- --watch\" \"build:styles -- --watch\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jspsych/jsPsych.git",
|
|
"directory": "packages/plugin-survey"
|
|
},
|
|
"author": "Becky Gilbert",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/jspsych/jsPsych/issues"
|
|
},
|
|
"homepage": "https://www.jspsych.org/latest/plugins/survey",
|
|
"peerDependencies": {
|
|
"jspsych": ">=7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@jspsych/config": "^2.0.1",
|
|
"@jspsych/test-utils": "^1.1.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"sass": "^1.43.5"
|
|
},
|
|
"dependencies": {
|
|
"survey-core": "^1.9.138",
|
|
"survey-knockout-ui": "^1.9.139"
|
|
}
|
|
}
|