-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.33 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@kurokida/jspsych-psychophysics",
"version": "3.7.0",
"description": "A jsPsych plugin for conducting online/Web-based psychophysical experiments",
"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": {
"tsc": "tsc",
"build": "rollup --config && npm run copy",
"build:watch": "rollup --config --watch",
"copy": "cp dist/index.browser.js jspsych-psychophysics.js || copy dist\\index.browser.js jspsych-psychophysics.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurokida/jspsych-psychophysics.git"
},
"author": "Daiichiro Kuroki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurokida/jspsych-psychophysics/issues"
},
"homepage": "https://jspsychophysics.hes.kyushu-u.ac.jp/",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"jspsych": ">=7.0.0"
},
"devDependencies": {
"@jspsych/config": "^1.3.1",
"@types/numeric": "^1.2.2",
"jspsych": "^7.3.0"
},
"dependencies": {
"ml-matrix": "^6.10.2",
"numeric": "^1.2.6",
"pixi.js": "^6.5.5"
}
}