jsPsych/packages/plugin-survey/package.json
github-actions[bot] 02a76d1f65
Version Packages (#3283)
* chore(release): version packages

* edit changelog text: survey JSON is object, not string

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Becky Gilbert <beckyannegilbert@gmail.com>
2024-04-30 16:10:21 -07:00

57 lines
1.5 KiB
JSON

{
"name": "@jspsych/plugin-survey",
"version": "1.0.0",
"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.0",
"@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"
}
}