-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 828 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 828 Bytes
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
{
"name": "twd-cli",
"version": "1.1.9",
"description": "CLI tool for running TWD tests with Puppeteer",
"type": "module",
"main": "src/index.js",
"bin": {
"twd-cli": "./bin/twd-cli.js"
},
"scripts": {
"test": "vitest",
"test:ci": "vitest --run --coverage",
"conventional-changelog": "conventional-changelog -i CHANGELOG.md",
"execute:cli": "node ./bin/twd-cli.js"
},
"keywords": [
"twd",
"testing",
"cli",
"puppeteer",
"browser-testing"
],
"author": "",
"license": "ISC",
"dependencies": {
"openapi-mock-validator": "^0.1.4",
"puppeteer": "^24.41.0",
"twd-js": "^1.7.1"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"conventional-changelog": "^7.2.0",
"vitest": "^4.1.4"
}
}