-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 2.11 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
{
"name": "pixels-catcher",
"version": "0.13.1",
"description": "UI snapshot testing for React Native",
"main": "lib/client/index.js",
"scripts": {
"demo": "cd demo && ../node_modules/.bin/flow-node ../cli.js android debug",
"lint": "eslint --ext .js --ext .ts --ext .tsx ./src/",
"build": "./node_modules/.bin/tsc -p src/client && ./node_modules/.bin/tsc -p src/runner",
"postbuild": "npm run assets",
"prepare": "npm run build",
"prepack": "npm run build",
"check-types-client": "./node_modules/.bin/tsc --noEmit -p src/client",
"check-types-runner": "./node_modules/.bin/tsc --noEmit -p src/runner",
"check-types": "npm run check-types-client && npm run check-types-runner",
"assets": "cp ./src/runner/server/dummy.png ./lib/runner/server/"
},
"bin": "./lib/runner/cli.js",
"files": [
"/lib",
"/src/*.js",
"/src/utils/*.js"
],
"keywords": [
"react-native view android iOS UI screenshot snapshot testing"
],
"author": "Maksym Rusynyk <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14.*"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rumax/react-native-PixelsCatcher.git"
},
"bugs": {
"url": "https://github.com/rumax/react-native-PixelsCatcher/issues"
},
"homepage": "https://github.com/rumax/react-native-PixelsCatcher#readme",
"dependencies": {
"formidable": "^1.2.2",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"react-native-save-view": "^0.2.3"
},
"devDependencies": {
"@types/formidable": "^1.2.2",
"@types/node": "^18.7.16",
"@types/pixelmatch": "^5.2.3",
"@types/pngjs": "^6.0.0",
"@types/react-native": "^0.64.6",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "17.0.1",
"react-native": "0.64.1",
"react-test-renderer": "17.0.1",
"typescript": "^4.2.4"
}
}