-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
81 lines (81 loc) · 2.24 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-mock-render",
"version": "0.1.9",
"description": "A fork of react-native-mock that renders components",
"main": "build/react-native.js",
"scripts": {
"prepublish": "npm run build",
"test": "npm run lint && npm run mocha",
"mocha": "mocha --require test/setup-tests.js --require babel-core/register 'test/**/*.js'",
"mocha:watch": "npm run test -- --watch",
"build": "babel src --out-dir build",
"lint": "./node_modules/.bin/eslint 'src/' 'test/' 'mock.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Root-App/react-native-mock-render.git"
},
"keywords": [
"react",
"react-native",
"mock",
"testing"
],
"author": "Root Insurance Co. Dev Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Root-App/react-native-mock-render/issues"
},
"homepage": "https://github.com/Root-App/react-native-mock-render",
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "6.9.0",
"babel-eslint": "10.0.2",
"babel-preset-airbnb": "2.0.0",
"babel-preset-react-native": "1.8.0",
"chai": "3.5.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "4.18.2",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-native": "3.7.0",
"jsdom": "^11.3.0",
"mocha": "^3.0.2",
"react": "16.0.0-beta.5",
"react-native": "^0.49.3",
"react-test-renderer": "^16.0.0",
"sinon": "^5.0.6",
"sinon-chai": "^3.0.0"
},
"dependencies": {
"create-react-class": "^15.6.2",
"cubic-bezier": "^0.1.2",
"invariant": "^2.2.1",
"keymirror": "^0.1.1",
"lodash": "^4.15.0",
"prop-types": "^15.6.0",
"raf": "^3.2.0",
"react-dom": "^16.0.0",
"react-timer-mixin": "^0.13.3",
"warning": "^2.1.0"
},
"resolutions": {
"nwmatcher": "1.4.4",
"braces": "2.3.1",
"js-yaml": "3.13.1",
"ws": "3.3.1",
"sshpk": "1.13.2",
"tunnel-agent": "0.6.0",
"base64-url": "2.0.0",
"fstream": "1.0.12",
"tar": "2.2.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"react-native": "*"
}
}