66 lines
2.0 KiB
JSON
66 lines
2.0 KiB
JSON
{
|
|
"name": "@umbraco-cms/acceptance-test-helpers",
|
|
"version": "18.1.0-rc",
|
|
"description": "Test helpers and builders for making Playwright tests for Umbraco solutions",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"prepack": "npm run build && node cleanse-pkg.js",
|
|
"test": "npm run build && npx playwright test DefaultConfig",
|
|
"ui": "npm run build && npx playwright test --ui DefaultConfig",
|
|
"postinstall": "node postinstall.js",
|
|
"config": "node config.js",
|
|
"testSqlite": "npm run build && npx playwright test DefaultConfig --grep-invert \"Users\"",
|
|
"all": "npm run build && npx playwright test",
|
|
"createTest": "node createTest.js",
|
|
"smokeTest": "npm run build && npx playwright test DefaultConfig --grep \"@smoke\"",
|
|
"smokeTestSqlite": "npm run build && npx playwright test DefaultConfig --grep \"@smoke\" --grep-invert \"Users\"",
|
|
"releaseTest": "npm run build && npx playwright test DefaultConfig --grep \"@release\"",
|
|
"testWindows": "npm run build && npx playwright test DefaultConfig --grep-invert \"RelationType\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/umbraco/Umbraco-CMS.git",
|
|
"directory": "tests/Umbraco.Tests.AcceptanceTest"
|
|
},
|
|
"keywords": [
|
|
"umbraco",
|
|
"playwright",
|
|
"helpers",
|
|
"builders",
|
|
"models",
|
|
"acceptance-test",
|
|
"e2e",
|
|
"test",
|
|
"playwright-plugin"
|
|
],
|
|
"author": "Umbraco",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"tslib": "^2.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.56",
|
|
"@types/node": "^20.9.0",
|
|
"dotenv": "^16.3.1",
|
|
"prompt": "^1.2.0",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"peerDependencies": {
|
|
"@playwright/test": ">=1.56"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
} |