forked from RealOrangeOne/react-native-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "react-native-mock",
"version": "0.2.7",
"description": "A fully mocked and test-friendly version of react native",
"main": "build/react-native.js",
"scripts": {
"prepublish": "npm run build",
"test": "npm run lint && npm run mocha",
"mocha": "mocha --require babel-core/register 'test/**/*.js'",
"mocha:watch": "npm run test -- --watch",
"build": "babel src --out-dir build",
"lint": "eslint 'src/' 'test/' 'mock.js'"
},
"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.5.2",
"babel-cli": "=6.9.0",
"babel-core": "=6.9.0",
"babel-eslint": "=6.0.4",
"babel-preset-airbnb": "=2.0.0",
"babel-preset-react-native": "=1.8.0",
"chai": "=3.5.0",
"eslint": "2.10.2",
"eslint-config-airbnb": "=9.0.1",
"eslint-plugin-import": "=1.8.0",
"eslint-plugin-jsx-a11y": "=1.2.2",
"eslint-plugin-react": "=5.1.1",
"eslint-plugin-react-native": "=1.0.2",
"mocha": "=2.5.3",
"react": "=15.1.0",
"react-native": "^0.27.0"
},
"dependencies": {
"cubic-bezier": "=0.1.2",
"invariant": "=2.2.1",
"keymirror": "=0.1.1",
"raf": "=3.2.0",
"react-addons-create-fragment": "=15.1.0",
"react-addons-linked-state-mixin": "=15.1.0",
"react-addons-perf": "=15.1.0",
"react-addons-pure-render-mixin": "=15.1.0",
"react-addons-test-utils": "=15.1.0",
"react-addons-update": "=15.1.0",
"react-timer-mixin": "=0.13.3",
"warning": "=2.1.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}