-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "PropertyFinder",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "mocha --require react-native-mock/mock --recursive './__tests__/*.js' --compilers js:babel-core/register"
},
"dependencies": {
"react-native": "^0.20.0",
"react-dom": "~0.14.7"
},
"devDependencies": {
"babel-core": "^6.6.5",
"babel-jest": "*",
"chai": "^3.5.0",
"enzyme": "^2.0.0",
"expect": "^1.14.0",
"istanbul": "^0.4.2",
"jest-cli": "^0.8.2",
"mocha": "^2.4.5",
"mockery": "^1.4.1",
"react": "^0.14.7",
"react-addons-test-utils": "~0.14.0",
"react-native-mock": "0.0.6",
"sinon": "^1.17.3"
},
"jest": {
"scriptPreprocessor": "node_modules/react-native/jestSupport/preprocessor.js",
"setupEnvScriptFile": "node_modules/react-native/jestSupport/env.js",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"unmockedModulePathPatterns": [
"promise",
"source-map",
"react",
"react-dom",
"react-addons-test-utils",
"fbjs",
"enzyme",
"cheerio",
"htmlparser2",
"lodash",
"domhandler",
"object.assign",
"define-properties",
"function-bind",
"object-keys",
"object.values",
"es-abstract"
]
}
}