-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "react-native-data-table",
"version": "0.2.3",
"description": "A generic table to lay out data from realm for react native",
"repository": "https://github.com/sussol/react-native-data-table.git",
"author": "Sustainable Solutions (NZ) Ltd.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"jest": {
"preprocessorIgnorePatterns": [
"node_modules/enzyme"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"setupEnvScriptFile": "node_modules/react-native/jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"globals": {
"__DEV__": true
},
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"react-native-mock",
"enzyme"
]
},
"dependencies": {
"deprecated-react-native-listview": "^0.0.8",
"react-native-vector-icons": "^4.4.2"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^13.2.2",
"babel-polyfill": "^6.9.1",
"babel-preset-react-native": "^1.9.0",
"enzyme": "^2.4.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"jest": "^16.0.1",
"jest-cli": "^16.0.1",
"react-addons-test-utils": "~15.3.1",
"react-native-mock": "0.2.4",
"sinon": "^1.17.3"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": ">= 0.44.0"
}
}