forked from RealOrangeOne/react-native-mock
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "react-native-mock",
"version": "0.3.1",
"description": "A fully mocked and test-friendly version of react native",
"main": "src/react-native.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha --require babel-core/register 'test/**/*.js'",
"mocha:watch": "npm run test -- --watch",
"build": "rm -rf build/ && babel src --out-dir build",
"lint": "eslint 'src/' 'test/' 'mock.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealOrangeOne/react-native-mock.git"
},
"keywords": [
"react",
"react-native",
"mock",
"testing"
],
"author": "Jake Howard <git@theorangeone.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RealOrangeOne/react-native-mock/issues"
},
"homepage": "https://github.com/RealOrangeOne/react-native-mock#readme",
"devDependencies": {
"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": "16.0.0-alpha.x",
"react-native": ">=0.43.0"
},
"dependencies": {
"cubic-bezier": "^0.1.2",
"invariant": "^2.2.1",
"keymirror": "^0.1.1",
"raf": "^3.2.0",
"react-addons-create-fragment": "latest",
"warning": "^2.1.0"
},
"peerDependencies": {
"react": "16.0.0-alpha.x",
"react-native": "*",
"react-dom": "16.0.0-alpha.x"
}
}