jsPsych/packages/plugin-survey/package.json
2022-09-20 16:56:51 +00:00

57 lines
1.5 KiB
JSON

{
"name": "@jspsych/plugin-survey",
"version": "0.2.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": "",
"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": "^1.3.0",
"@jspsych/test-utils": "^1.1.2",
"npm-run-all": "^4.1.5",
"sass": "^1.43.5"
},
"dependencies": {
"knockout": "3.5.1",
"survey-knockout": "1.9.30"
}
}