-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathpackage.json
113 lines (113 loc) · 2.92 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-native-linkedin",
"version": "1.0.30",
"main": "index.js",
"files": [
"assets/[email protected]",
"assets/[email protected]"
],
"description": "React-Native LinkedIn, a simple LinkedIn login library for React-Native with WebView and Modal",
"repository": "https://github.com/xcarpentier/react-native-linkedin.git",
"author": "Xavier Carpentier <[email protected]> (http://xaviercarpentier.com/)",
"bugs": {
"url": "https://github.com/xcarpentier/react-native-linkedin/issues"
},
"homepage": "https://github.com/xcarpentier/react-native-linkedin",
"license": "MIT",
"scripts": {
"prepush": "yarn run lint && yarn run flow && yarn run test",
"test": "jest",
"lint": "eslint .",
"flow": "./node_modules/flow-bin/cli.js",
"bump": "yarn version --new-version $NEW_VERSION && git push --follow-tags",
"cleaning": "rm -rf node_modules && rm -f yarn.lock && yarn install && watchman watch-del-all && rm -fr $TMPDIR/react-*"
},
"keywords": [
"react-native",
"react-native-linkedin",
"linkedin"
],
"dependencies": {
"query-string": "^4.3.4",
"ramda": "^0.24.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.1.0",
"eslint": "3.9.1",
"eslint-config-airbnb": "12.0.0",
"eslint-config-airbnb-flow": "1.0.2",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.5.0",
"eslint-plugin-react-native": "2.0.0",
"flow-bin": "^0.50.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-junit-reporter": "^1.1.0",
"jest-react-native": "^18.0.0",
"react": "16.0.0-alpha.12",
"react-native": "^0.46.0",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"./example/"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter"
},
"babel": {
"presets": [
"react-native"
]
},
"eslintConfig": {
"extends": [
"airbnb",
"airbnb-flow"
],
"parser": "babel-eslint",
"plugins": [
"react",
"react-native"
],
"globals": {
"__DEV__": false,
"fetch": false,
"describe": false,
"it": false,
"expect": false,
"jest": false,
"alert": false,
"FormData": false
},
"rules": {
"global-require": [
0
],
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"no-return-assign": 0,
"no-alert": 0,
"react/prefer-stateless-function": 0,
"arrow-parens": 0,
"camelcase": 0,
"no-underscore-dangle": 0,
"no-confusing-arrow": 0,
"semi": [
"error",
"never"
],
"max-len": [
2,
80,
2
]
}
}
}