2024-02-07 00:02:43 +00:00
|
|
|
{
|
|
|
|
"name": "difuse-playwright",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Playwright tests for Difuse devices",
|
|
|
|
"main": "index.js",
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
2024-06-02 15:43:03 +00:00
|
|
|
"lint:check": "semistandard tests/**/*.js"
|
|
|
|
"lint:fix": "semistandard --fix tests/**/*.js",
|
2024-02-08 19:06:05 +00:00
|
|
|
"codegen": "npx playwright codegen",
|
2024-02-07 00:29:45 +00:00
|
|
|
"test": "playwright test",
|
|
|
|
"prepare": "npm run lint"
|
2024-02-07 00:02:43 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2024-06-02 15:43:03 +00:00
|
|
|
"pre-commit": "npm run lint:fix"
|
2024-02-07 00:02:43 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
|
|
|
"@playwright/test": "^1.41.2",
|
|
|
|
"@types/node": "^20.11.16",
|
2024-02-07 00:29:45 +00:00
|
|
|
"husky": "^9.0.10",
|
2024-02-07 00:02:43 +00:00
|
|
|
"semistandard": "^17.0.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"dotenv": "^16.4.1",
|
|
|
|
"ip-address": "^9.0.5",
|
|
|
|
"ip-cidr": "^4.0.0"
|
|
|
|
}
|
|
|
|
}
|