-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
98 lines (98 loc) · 2.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-native-drawer-layout-polyfill",
"version": "2.0.0",
"description": "A polyfill for React Natives DrawerLayoutAndroid",
"main": "dist",
"scripts": {
"babel": "babel src --out-dir dist",
"build": "npm run-script clear && npm run-script babel",
"clear": "rm -rf dist/ && mkdir dist/",
"prepublish": "npm run build",
"test": "xo"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "[email protected]:react-native-community/react-native-drawer-layout-polyfill.git"
},
"author": "Daniel Schmidt <[email protected]> (https://github.com/danielmschmidt)",
"contributors": [],
"xo": {
"ignores": [
"dist/*"
],
"esnext": true,
"space": 2,
"plugins": [
"react"
],
"rules": {
"babel/object-curly-spacing": [
2,
"always"
],
"comma-dangle": [
2,
"always-multiline"
],
"react/jsx-curly-spacing": 2,
"strict": [
2,
"never"
],
"no-use-before-define": 0,
"one-var": [
2,
{
"uninitialized": "always",
"initialized": "never"
}
],
"react/no-set-state": 1,
"react/prop-types": 2,
"react/jsx-sort-prop-types": 2,
"react/jsx-closing-bracket-location": [
2,
{
"selfClosing": "after-props",
"nonEmpty": "after-props"
}
],
"react/jsx-indent-props": [
2,
2
],
"react/self-closing-comp": 2
}
},
"keywords": [
"react",
"react-native",
"ios",
"android",
"drawer",
"layout",
"menu"
],
"license": "MIT",
"dependencies": {
"react-native-drawer-layout": "2.0.0"
},
"peerDependencies": {
"react-native": ">= 0.35"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-eslint": "^5.0.0-beta6",
"babel-preset-react-native": "^1.8.0",
"eslint": "^1.10.3",
"eslint-config-xo": "^0.9.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-no-empty-blocks": "0.0.2",
"eslint-plugin-no-use-extend-native": "^0.3.3",
"eslint-plugin-react": "^3.13.1",
"xo": "^0.12.1"
}
}