-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
81 lines (81 loc) · 1.97 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
{
"name": "react-native-owl",
"version": "1.4.0",
"description": "Visual regression testing for React Native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"owl": "./dist/cli/index.js"
},
"files": [
"dist/",
"!dist/**/*.test.*",
"native/",
"scripts/",
"react-native.config.js",
"README.md"
],
"scripts": {
"prepare:report": "mkdir -p dist/report && cp lib/report/index.html dist/report/",
"prebuild": "yarn prepare:report",
"build": "tsc",
"prewatch": "yarn prepare:report",
"watch": "tsc --watch",
"prettier:check": "prettier --check 'lib/**/*.{js,ts,tsx}'",
"prettier:apply": "prettier --write 'lib/**/*.{js,ts,tsx}'",
"test": "yarn jest"
},
"repository": "https://github.com/FormidableLabs/react-native-owl",
"author": "Emmanouil Konstantinidis <[email protected]>",
"license": "MIT",
"keywords": [
"react-native",
"ios",
"android",
"mobile",
"visual regression",
"testing",
"tooling"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/lib/**/*.test.[jt]s"
]
},
"dependencies": {
"ajv": "^7.0.3",
"execa": "^5.1.1",
"handlebars": "^4.7.7",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"ws": "^8.2.3",
"yargs": "^17.2.1"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-native": "^0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
"@types/jest": "^26.0.19",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@types/react": "^18.0.20",
"@types/react-native": "^0.65.x",
"@types/ws": "^8.2.0",
"@types/yargs": "^17.0.5",
"jest": "^26.6.3",
"jest-websocket-mock": "^2.3.0",
"prettier": "^2.4.1",
"react": "^18.1.0",
"react-native": "^0.68.2",
"ts-jest": "^26.4.4",
"typescript": "^4.4.4"
},
"publishConfig": {
"provenance": true
}
}