-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 KB
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
{
"name": "react-refract",
"version": "0.0.3",
"description": "A wrapper for React Components/Enzyme shallow that allows testing of lifecycle events and component instances with react 16.0.0-alpha-12 (or other as of this date unsupported versions). Works for react native shallow testing as well.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "babel src --presets babel-preset-react-native --ignore __tests__ --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bestbrains/refract.git"
},
"keywords": [
"react",
"react-native",
"enzyme",
"jest",
"component",
"shallow",
"wrapper",
"instance",
"fix"
],
"peerDependencies": {
"enzyme": "^2.9.1",
"react": "^16.0.0-beta.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react-native": "2.1.0",
"enzyme": "^2.9.1",
"eslint": "^4.2.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^2.3.2",
"jest": "20.0.4",
"react": "16.0.0-beta.2",
"react-dom": "16.0.0-beta.2",
"react-native": "0.46.1",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native",
"testRegex": "./__tests__/[^setup].*test.js$",
"transformIgnorePatterns": [
"node_modules/(?!react-native|native-base|react-navigation|react-native-fabric)"
]
},
"author": "KBroloes",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bestbrains/refract/issues"
},
"homepage": "https://github.com/Bestbrains/refract#readme"
}