-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.14 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
{
"name": "webship-js",
"version": "2.0.0",
"description": "Webship JS automated functional testing.",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 20.0"
},
"scripts": {
"postinstall": "node ./bin/postinstall.js",
"test": "cucumber-js --config cucumber.js; node generate-reports.js;",
"test:firefox": "BROWSER=firefox cucumber-js --config cucumber.js; node generate-reports.js;",
"test:webkit": "BROWSER=webkit cucumber-js --config cucumber.js; node generate-reports.js;",
"start": "http-server examples -p 8080 -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webship/webship-js.git"
},
"author": "Webship.co",
"license": "MIT",
"bugs": {
"url": "https://github.com/webship/webship-js/issues"
},
"homepage": "https://github.com/webship/webship-js",
"dependencies": {
"@cucumber/cucumber": "*",
"@cucumber/pretty-formatter": "~1",
"axios": "~1",
"cucumber-html-reporter": "^6.0.0",
"http-server": "^14.1.1",
"playwright": "^1.58.2",
"@types/node": "~20",
"ts-node": "~10",
"typescript": "~5"
}
}