forked from hashgit/react-native-linkedin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.36 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-linkedin",
"version": "1.3.1",
"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",
"deploy":
"cd example && ./write_config_env.js && yarn install && exp login --username $EXPO_USERNAME --password $EXPO_PASSWORD && exp publish --non-interactive",
"bump-patch":
"NEW_VERSION=`./scripts/version_increment.js patch` && yarn version --new-version $NEW_VERSION && git push --follow-tags",
"bump-minor":
"NEW_VERSION=`./scripts/version_increment.js minor` && yarn version --new-version $NEW_VERSION && git push --follow-tags",
"bump-major":
"NEW_VERSION=`./scripts/version_increment.js major` && yarn version --new-version $NEW_VERSION && git push --follow-tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"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": "^6.0.0",
"ramda": "^0.25.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-jest": "^22.0.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "12.0.0",
"eslint-config-airbnb-flow": "1.0.2",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "7.11.0",
"eslint-plugin-react-native": "3.3.0",
"flow-bin": "^0.52.0",
"husky": "^1.0.0",
"jest": "^22.0.0",
"jest-junit-reporter": "^1.1.0",
"jest-react-native": "^18.0.0",
"react": "16.6.0",
"react-native": "^0.49.0",
"react-test-renderer": "16.6.0"
},
"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, 100, 2]
}
}
}