@jspsych/new-plugin
Version:
CLI tool to create new jsPsych plugins
54 lines (53 loc) • 1.18 kB
JSON
{
"name": "{npmPackageName}",
"version": "0.0.1",
"description": "{description}",
"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": "{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",
"@jspsych/test-utils": "^1.0.0"
}
}