-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.55 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jspsych-ado",
"version": "0.3.0",
"description": "In-browser adaptive design optimization (ADO) for jsPsych experiments — Stan/WASM, no server, no Python.",
"type": "module",
"license": "MIT",
"keywords": [
"jspsych",
"adaptive-design-optimization",
"ado",
"stan",
"webassembly",
"bayesian",
"psychophysics"
],
"homepage": "https://github.com/jspsych/jspsych-ado#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jspsych/jspsych-ado.git"
},
"bugs": {
"url": "https://github.com/jspsych/jspsych-ado/issues"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"./models/*": "./src/models/*",
"./package.json": "./package.json"
},
"sideEffects": [
"**/model.js",
"**/main.js"
],
"files": [
"src",
"core/tinystan",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "node --test tests/js/*.test.mjs",
"test:wasm": "node tests/wasm/hyperbolic_recovery.mjs && node tests/wasm/weber_recovery.mjs && node tests/wasm/exponential_recovery.mjs && node tests/wasm/line_length_3ifc_recovery.mjs && node tests/wasm/magnitude_estimation_recovery.mjs && node tests/wasm/stopping_recovery.mjs && node tests/wasm/likelihood_parity.mjs && node tests/wasm/locate_file.mjs",
"test:browser": "node tests/browser/controller_api.mjs && node tests/browser/compile_preload.mjs && node tests/browser/dd_tutorial.mjs && node tests/browser/size_discrimination.mjs && node tests/browser/dd.mjs && node tests/browser/line_length_discrimination.mjs && node tests/browser/halberda_dot_comparison.mjs && node tests/browser/magnitude_estimation.mjs && node tests/browser/byo_model_exponential.mjs && node tests/browser/byo_task_money_choice.mjs",
"patch:wasm": "node scripts/patch-wasm-glue.mjs",
"test:bundler": "node tests/bundler/run.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm test && npm run typecheck",
"prepare": "husky"
},
"author": "The jspsych-ado contributors",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"jspsych": ">=8"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.5.0",
"prettier": "^3.9.6",
"puppeteer": "^25.10.0",
"typescript": "^7.0.2"
},
"prettier": {
"printWidth": 100
},
"lint-staged": {
"*.{js,mjs,cjs,ts,json,md,css}": "prettier --write"
}
}