forked from testing-library/native-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3 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
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@testing-library/react-native",
"version": "0.0.0-semantically-released",
"description": "Simple and complete React Native testing utilities that encourage good testing practices.",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"files": [
"dist",
"typings",
"cleanup-after-each.js",
"pure.js",
"jest-preset.js"
],
"engines": {
"node": ">=8"
},
"scripts": {
"commit": "git-cz",
"commit:add": "git add .",
"commit:all": "npm run commit:add && npm run commit",
"readme:toc": "doctoc README.md --maxlevel 3 --title '## Table of Contents'",
"test": "jest",
"pretty-quick": "pretty-quick --staged",
"prepublishOnly": "rm -rf dist; babel src --out-dir dist --ignore 'src/**/__tests__/*'",
"semantic-release": "semantic-release",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"keywords": [
"testing",
"react",
"react-native",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"author": "Brandon Carroll <[email protected]> (https://github.com/bcarroll22)",
"license": "MIT",
"dependencies": {
"pretty-format": "^24.5.0",
"wait-for-expect": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/runtime": "7.4.0",
"@testing-library/jest-native": "^3.0.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"intl": "^1.2.5",
"jest": "24.5.0",
"jest-fetch-mock": "^2.1.1",
"jest-in-case": "^1.0.2",
"metro-react-native-babel-preset": "^0.52.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react": "16.9.0",
"react-hooks-testing-library": "^0.5.0",
"react-intl": "^2.8.0",
"react-intl-native": "^2.1.2",
"react-native": "^0.61.1",
"react-native-gesture-handler": "^1.1.0",
"react-navigation": "^3.5.1",
"react-redux": "^7.0.3",
"react-test-renderer": "16.9.0",
"redux": "^4.0.1",
"semantic-release": "^15.13.3",
"snapshot-diff": "0.5.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-test-renderer": "*"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"proseWrap": "always"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/native-testing-library.git"
},
"bugs": {
"url": "https://github.com/testing-library/native-testing-library/issues"
},
"homepage": "https://github.com/testing-library/native-testing-library#readme"
}