forked from RealOrangeOne/react-native-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.96 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
{
"name": "react-native-mock",
"version": "0.0.6",
"description": "A fully mocked and test-friendly version of react native",
"main": "build/react-native.js",
"scripts": {
"prepublish": "npm run build",
"test": "mocha --require babel-core/register test/**/*.js",
"test:watch": "npm run test -- --watch",
"build": "babel src --out-dir build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelandrichardson/react-native-mock.git"
},
"keywords": [
"react",
"react-native",
"mock",
"testing"
],
"author": "Leland Richardson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lelandrichardson/react-native-mock/issues"
},
"homepage": "https://github.com/lelandrichardson/react-native-mock#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-syntax-class-properties": "^6.3.13",
"babel-plugin-syntax-trailing-function-commas": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.4.0",
"babel-plugin-transform-es2015-block-scoping": "^6.4.0",
"babel-plugin-transform-es2015-classes": "^6.4.5",
"babel-plugin-transform-es2015-computed-properties": "^6.4.0",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-es2015-destructuring": "^6.4.0",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.5",
"babel-plugin-transform-es2015-parameters": "^6.4.5",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.4.0",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.4.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-react-display-name": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-preset-airbnb": "^1.0.1",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-native": "^0.18.1"
},
"dependencies": {
"cubic-bezier": "^0.1.2",
"invariant": "^2.2.0",
"keymirror": "^0.1.1",
"raf": "^3.1.0",
"react-addons-clone-with-props": "^0.14.7",
"react-addons-create-fragment": "^0.14.7",
"react-addons-linked-state-mixin": "^0.14.7",
"react-addons-perf": "^0.14.7",
"react-addons-pure-render-mixin": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-addons-update": "^0.14.7",
"react-timer-mixin": "^0.13.3",
"warning": "^2.1.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}