@jspsych/new-plugin
Version:
CLI tool to create new jsPsych plugins
42 lines (41 loc) • 957 B
JSON
{
"name": "{npmPackageName}",
"version": "0.0.1",
"description": "{description}",
"unpkg": "dist/index.browser.min.js",
"files": [
"index.js",
"dist"
],
"scripts": {
"build": "babel index.js --presets @babel/preset-env,minify --source-maps --out-file dist/index.browser.min.js",
"build:watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "{gitRootUrl}",
"directory": "{packageDir}"
},
"keywords": [
"jsPsych"
],
"author": {
"name": "{author}",
"url": "{authorUrl}"
},
"license": "MIT",
"bugs": {
"url": "{gitRootHttpsUrl}/issues"
},
"homepage": "{documentationUrl}",
"dependencies": {
"jspsych": "^8.0.0",
"@citation-js/core": "^0.7.14",
"@citation-js/plugin-software-formats": "^0.6.1",
"@citation-js/plugin-bibtex": "^0.7.14",
"@citation-js/plugin-cff": "^0.6.1"
},
"devDependencies": {
"@jspsych/config": "^3.2.2"
}
}