-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.02 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
{
"name": "psychojs_testing",
"version": "1.0.0",
"private": true,
"description": "Scripts for automated testing of PsychoJS",
"license": "MIT",
"author": {
"name": "Thomas Pronk"
},
"scripts": {
"start": "node test.cjs --server local --url local --label",
"watch_psychojs_js": "npx onchange -i --await-write-finish 100 \"%PSYCHOJS_PATH%/src/**\" -- node test.cjs --nocalibration --nocss --skiptests --beep --url local --label",
"watch_psychojs_css": "npx onchange -i --await-write-finish 100 \"%PSYCHOJS_PATH%/src/**\" -- node test.cjs --nocalibration --nojs --skiptests --beep --url local --label",
"watch_psychopy": "npx onchange -i --await-write-finish 100 \"%PSYCHOPY_PATH%/psychopy/**\" -- node test.cjs --nocalibration --nocss --nojs --compile --skiptests --beep --url local --label",
"watch_experiment": "npx onchange -i --await-write-finish 100 \"tests/**\" -- node test.cjs --nocalibration --nocss --nojs --compile --skiptests --beep --url local --label",
"watch_all": "npx onchange -i --await-write-finish 100 \"%PSYCHOJS_PATH%/src/**\" \"%PSYCHOPY_PATH%/psychopy/**\" \"tests/**\" -- node test.cjs --nocalibration --compile --skiptests --beep --url local --label"
},
"devDependencies": {
"@wdio/cli": "^7.2.2",
"@wdio/dot-reporter": "^7.2.1",
"@wdio/jasmine-framework": "^7.2.1",
"@wdio/local-runner": "^7.2.2",
"@wdio/selenium-standalone-service": "^7.2.1",
"@wdio/sync": "^7.2.2",
"beepbeep": "^1.3.0",
"fs-extra": "^9.1.0",
"jasmine-core": "^3.7.1",
"jimp": "^0.16.1",
"json2csv": "^5.0.6",
"json2md": "^1.10.0",
"karma": "^6.2.0",
"karma-browserstack-launcher": "github:psychopy/karma-browserstack-launcher",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^4.0.1",
"karma-json-reporter": "^1.2.1",
"mustache": "^4.1.0",
"onchange": "^7.1.0",
"replace-color": "^2.3.0",
"ssh2-sftp-client": "^9.0.4",
"wdio-json-reporter": "^3.0.0",
"xlsx": "^0.18.5",
"yargs": "^16.2.0"
}
}