-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 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
60
61
{
"name": "react-native-drillable-object-view",
"version": "0.1.4",
"description": "A react native view that allows you to drill down into objects",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --ignore-path .gitignore --ext .js --ext .jsx",
"fix-lint": "yarn lint -- --fix",
"prepush": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newtonry/react-native-drillable-object-view.git"
},
"keywords": [
"react",
"native",
"object",
"drilldown"
],
"author": "newtonry",
"license": "MIT",
"bugs": {
"url": "https://github.com/newtonry/react-native-drillable-object-view/issues"
},
"homepage": "https://github.com/newtonry/react-native-drillable-object-view#readme",
"peerDependencies": {
"react": "^16.0.0-alpha.12",
"react-native": "^0.44.0"
},
"dependencies": {
"lodash": "^4.16.6",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"enzyme": "^3.1.0",
"enzyme-to-json": "^3.1.2",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.1.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"react": "^16.0.0-alpha.12",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0-alpha.12",
"react-native": "^0.49.3",
"react-test-renderer": "^16.0.0-alpha.12"
},
"jest": {
"preset": "react-native",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}