-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.7 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
{
"name": "swipe-demo",
"author": "Johann Steinbrecher",
"version": "0.0.1",
"private": false,
"engines": {
"node": ">=5.0"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"autobind-decorator": "^1.3.4",
"babel-preset-react-native-stage-0": "^1.0.1",
"baobab": "^2.3.4",
"baobab-react": "^2.1.2",
"bluebird": "^3.4.6",
"nets": "^3.2.0",
"react": "15.4.1",
"react-native": "0.39.2",
"react-native-swipe-cards": "git@github.com:hansman/react-native-tinder-swipe-cards",
"react-native-vector-icons": "^3.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"babel-jest": "17.0.2",
"babel-preset-react-native": "1.9.0",
"enzyme": "^2.7.0",
"jest": "17.0.3",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "15.4.1"
},
"jest": {
"automock": false,
"timers": "real",
"bail": false,
"cacheDirectory": "/tmp",
"collectCoverage": false,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"json",
"lcov",
"text"
],
"globals": {},
"mocksPattern": "(?:[\\/]|^)__mocks__[\\/]",
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"modulePaths": [],
"modulePathIgnorePatterns": [],
"notify": false,
"preset": "react-native",
"resetModules": false,
"setupFiles": [],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRunner": "jasmine2",
"unmockedModulePathPatterns": [],
"verbose": true
}
}