-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "e2e-voyager",
"version": "0.0.0",
"description": "end-to-end tests for DPO-Voyager",
"main": "mocharc.js",
"type": "module",
"scripts": {
"test": "mocha"
},
"mocha":{
"reporter": "spec",
"slow": 3000,
"timeout": 30000,
"require": ["hooks/chai.js", "hooks/browser.js", "hooks/serve.js", "hooks/chai-compare.js", "hooks/conditionals.js"],
"spec": "tests/**/*.test.js",
"asyncOnly": true
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Holusion/e2e-voyager.git"
},
"author": "Holusion SAS <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Holusion/e2e-voyager/issues"
},
"engines": {
"node": ">=20.11"
},
"homepage": "https://github.com/Holusion/e2e-voyager#readme",
"devDependencies": {
"chai-screenshot": "^0.1.1",
"mocha": "^10.8.2",
"mocha-chai-snapshot": "^1.0.0",
"puppeteer": "^23.8.0",
"supertest": "^7.0.0"
},
"dependencies": {
"@types/express": "^5.0.0",
"express": "^4.21.1",
"webdav-server": "^2.6.2"
}
}