-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
71 lines (71 loc) · 2.37 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
{
"name": "safetest",
"version": "0.1.13",
"description": "Safetest is a powerful UI testing library that combines Playwright, Jest, and React for a powerful end-to-end testing solution for applications and component testing. With Safetest, you can easily test the functionality and appearance of your application, ensuring that it works as expected and looks great on all devices.",
"main": "lib/index.js",
"bin": "./lib/cli.js",
"exports": {
".": "./lib/index.js",
"./setup": "./lib/setup.js",
"./browser-mock": "./lib/browser-mock.js",
"./jest": "./lib/jest.js",
"./react": "./lib/react.js",
"./solid": "./lib/solid.js",
"./report": "./lib/report/index.js",
"./ng": "./lib/ng.js",
"./vitest": "./lib/vitest.js",
"./svelte": "./lib/svelte.js",
"./vue": "./lib/vue.js",
"./docker": "./lib/docker.js"
},
"scripts": {
"build": "tsc",
"build:reporter": "cd examples/vite-react-ts && npm run report:build && cp dist/report.html ../../ && rm -rf ../../lib/report && mv report ../../lib",
"prepare": "npm run build",
"prepublishOnly": "npm run build:reporter && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Moshe Kolodny",
"license": "MIT",
"devDependencies": {
"@angular/core": "^16.2.2",
"@angular/platform-browser": "^16.2.2",
"@angular/platform-browser-dynamic": "^16.2.2",
"@jest/test-result": "^27.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"@types/ws": "^8.5.4",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-scripts": "^5.0.1",
"solid-js": "^1.8.14",
"svelte": "^4.2.0",
"typescript": "^5.0.4",
"vercel": "^29.4.0",
"vitest": "^0.34.3",
"vue": "^3.3.4"
},
"dependencies": {
"@playwright/test": "^1.34.0",
"@types/jest-image-snapshot": "^6.1.0",
"commander": "^11.0.0",
"deepmerge": "^4.3.1",
"jest-image-snapshot": "^6.1.0",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"playwright": "^1.34.0",
"react-override": "^0.0.13",
"setimmediate": "^1.0.5",
"ws": "^8.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolodny/safetest.git"
},
"bugs": {
"url": "https://github.com/kolodny/safetest/issues"
},
"homepage": "https://github.com/kolodny/safetest#readme"
}