-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 859 Bytes
/
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
{
"name": "playrunner",
"version": "0.1.0",
"description": "A user flow testing tool for websites based on Playwright",
"main": "/dist/index.js",
"author": "Jason Rai <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/MisterJimson/playrunner",
"scripts": {
"dev": "npx tsc && node dist/index.js run",
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"bin": {
"playrunner": "./dist/index.js"
},
"dependencies": {
"@playwright/test": "^1.29.2",
"chalk": "4.1.2",
"commander": "^10.0.0",
"figlet": "^1.5.2",
"js-yaml": "^4.1.0",
"playwright": "^1.29.2"
},
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"prettier": "2.8.3",
"typescript": "^4.9.4"
}
}