-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 999 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 999 Bytes
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
{
"name": "ReactNativeTesting",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"mocha": "BABEL_ENV=mocha mocha --require mocha-setup.js --compilers js:babel-core/register --recursive __tests__/mocha",
"mocha:watch": "./mocha.runner.sh",
"jest": "jest"
},
"dependencies": {
"react": "15.4.2",
"react-native": "0.41.2",
"react-native-share": "1.0.19"
},
"devDependencies": {
"babel-core": "6.23.1",
"babel-jest": "19.0.0",
"babel-plugin-rewire": "1.0.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react-native": "1.9.1",
"chai": "3.5.0",
"enzyme": "2.7.1",
"jest": "19.0.2",
"mocha": "3.2.0",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-native-mock": "0.3.1",
"react-test-renderer": "15.4.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0"
},
"jest": {
"preset": "react-native",
"testMatch": ["**/__tests__/jest/*.js?(x)"]
}
}