-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const config = require("@jspsych/config/jest").makePackageConfig(__dirname); | ||
config.moduleNameMapper = {}; | ||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "@lookit/video", | ||
"version": "0.0.1", | ||
"description": "Video extensions for lookit studies.", | ||
"homepage": "https://github.com/lookit/lookit-jspsych#readme", | ||
"bugs": { | ||
"url": "https://github.com/lookit/lookit-jspsych/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lookit/lookit-jspsych.git" | ||
}, | ||
"license": "ISC", | ||
"author": "Christopher J Green <[email protected]> (https://github.com/okaycj)", | ||
"main": "dist/index.js", | ||
"unpkg": "dist/index.browser.min.js", | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "rollup --config", | ||
"test": "jest --coverage" | ||
}, | ||
"devDependencies": { | ||
"@jspsych/config": "^2.0.0" | ||
}, | ||
"peerDependencies": { | ||
"jspsych": "^7.3.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { makeDevConfig } from "../../rollup-dev.mjs"; | ||
import rollupConfig from "./rollup.config.mjs"; | ||
const port = 10004; // this needs to change for each package | ||
export default makeDevConfig(rollupConfig, port); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { makeRollupConfig } from "@jspsych/config/rollup"; | ||
// This package name needs to be unique | ||
export default makeRollupConfig("chsVideo"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"strict": true | ||
}, | ||
"extends": "@jspsych/config/tsconfig.core.json", | ||
"include": ["src"] | ||
} |