-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.01 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "puppeteer-ui-testkit",
"version": "1.0.1",
"homepage": "https://github.com/yoniaiz/puppeteer-ui-teskit",
"description": "Puppeteer UI TestKit is an open-source npm package that simplifies UI testing for visual regression and accessibility using Puppeteer and axe-core. It provides an intuitive toolkit for automating UI tests, capturing screenshots, and performing accessibility checks.",
"main": "dist/index.js",
"bin": "bin/index.js",
"types": "build/types/Testkit.types.d.ts",
"type": "module",
"files": [
"build",
"bin"
],
"bugs": {
"url": "https://github.com/yoniaiz/puppeteer-ui-teskit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yoniaiz/puppeteer-ui-teskit"
},
"license": "MIT",
"scripts": {
"start": "node bin/index.js --statics sandbox/public --port 3000",
"clean": "rimraf build tmp",
"copy-assets": "copyfiles -u 1 \"src/assets/**/*\" build",
"prebuild": "npm run clean && npm run copy-assets",
"build": "tsc -p tsconfig.json",
"build:watch": "npm run copy-assets && tsc -w -p tsconfig.json",
"build:release": "npm run clean && npm run copy-assets && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write .",
"prettier:check": "prettier --config .prettierrc --check .",
"precommit": "npm run prettier && npm run lint",
"test": "jest",
"test:e2e": "npm run start",
"test:watch": "jest --watch",
"test:all": "npm run test && npm run test:e2e"
},
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "20.3.0"
},
"keywords": [
"testing",
"ui",
"puppeteer",
"visual",
"regression",
"accessibility",
"axe-core",
"axe",
"testkit",
"test",
"visual-regression",
"visual-regression-testing",
"e2e",
"e2e-testing",
"testing-tools"
],
"author": "Yonatan Aizenshtein <https://github.com/yoniaiz>",
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"babel-plugin-transform-import-meta": "^2.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@axe-core/puppeteer": "^4.7.3",
"ci-info": "^3.8.0",
"commander": "^11.0.0",
"consola": "^3.2.3",
"finalhandler": "^1.2.0",
"glob": "^10.3.3",
"open": "^9.1.0",
"piscina": "^4.0.0",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"prompts": "^2.4.2",
"puppeteer": "^20.8.0",
"serve-static": "^1.15.0",
"sharp": "^0.32.2"
}
}