forked from psychopy/psychojs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "psychojs",
"version": "2022.1.3",
"private": true,
"description": "Helps run in-browser neuroscience, psychology, and psychophysics experiments",
"license": "MIT",
"author": {
"name": "Alain Pitiot"
},
"type": "module",
"exports": {
".": "./src/index.js",
"./css": "./src/index.css",
"./package.json": "./package.json"
},
"main": "./src/index.js",
"scripts": {
"build": "npm run build:js && npm run build:css && npm run build:docs",
"build:css": "node ./scripts/build.css.cjs",
"build:docs": "jsdoc src -r -d docs --readme README.md",
"build:js": "node ./scripts/build.js.cjs",
"fmt": "dprint fmt",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "csslint src",
"lint:js": "eslint src",
"lint:scripts": "eslint scripts --ext .cjs",
"start": "npm run build"
},
"dependencies": {
"howler": "^2.2.3",
"log4javascript": "github:Ritzlgrmft/log4javascript",
"pako": "^1.0.11",
"pixi.js-legacy": "^6.5.8",
"seedrandom": "^3.0.5",
"tone": "^14.7.77",
"xlsx": "^0.18.5"
},
"devDependencies": {
"csslint": "^1.0.5",
"esbuild": "^0.15.16",
"eslint": "^8.29.0",
"jsdoc": "^3.6.11"
},
"engines": {
"node": ">=14.15.0",
"npm": ">=6.14.8"
}
}