-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
91 lines (91 loc) · 2.05 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
{
"name": "react-native-dismiss-keyboard",
"version": "1.0.0",
"description": "A simple way to dismiss the keyboard programmatically in a react native application.",
"main": "dist/index.js",
"scripts": {
"babel": "babel *.js --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]:DanielMSchmidt/react-native-dismiss-keyboard.git"
},
"author": "Daniel Schmidt <[email protected]> (https://github.com/DanielMSchmidt)",
"xo": {
"ignores": [
"DismissKeyboardExample/**",
"dist/*"
],
"esnext": true,
"space": 2,
"plugins": [
"react"
],
"rules": {
"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-props": 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-component",
"react",
"react-native",
"ios",
"android",
"keyboard",
"dismiss"
],
"license": "MIT",
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"babel": "6.23.0",
"babel-eslint": "7.2.3",
"eslint": "3.19.0",
"eslint-config-xo": "0.43.1",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-no-empty-blocks": "0.0.2",
"eslint-plugin-no-use-extend-native": "0.5.0",
"eslint-plugin-react": "6.10.3",
"xo": "0.54.2"
}
}