forked from vijaymarupudi/plugin-number-line
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 840 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@vijaymarupudi/plugin-number-line",
"version": "0.0.1",
"description": "An implemention of a number line estimation task outlined by Cohen and Ray",
"type": "module",
"main": "dist/index.mjs",
"files": [
"dist"
],
"source": "src/index.ts",
"scripts": {
"build": "rollup --config",
"build:watch": "npm run build -- --watch",
"test": "jest"
},
"keywords": [
"jsPsych"
],
"license": "MIT",
"homepage": "/plugin-number-line/README.md",
"dependencies": {
"jspsych": "^8.0.0",
"pixi.js": "^8.9.2"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"rollup": "^4.55.1",
"rollup-plugin-esbuild": "^6.2.1",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1"
}
}