forked from react-native-share/react-native-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.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
{
"name": "react-native-share",
"description": "Social share, sending simple data to other apps.",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/react-native-share.git"
},
"devDependencies": {
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@react-native-community/eslint-config": "0.0.5",
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-plugin-flowtype": "3.10.3",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-native": "3.7.0",
"flow-bin": "^0.101",
"generate-changelog": "1.7.1",
"husky": "2.4.1",
"idx": "2.5.6",
"lint-staged": "8.2.0",
"minimist": "1.2.0",
"pre-commit": "1.2.2",
"prettier": "^1.18.2",
"react": "16.8.3",
"react-native": "0.60.3",
"simple-git": "1.113.0"
},
"keywords": [
"react-native",
"android",
"ios",
"windows",
"bridge",
"react",
"share"
],
"nativePackage": true,
"author": {
"name": "Esteban Fuentealba",
"email": "[email protected]"
},
"homepage": "https://github.com/react-native-community/react-native-share#readme",
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn validate",
"git add"
]
},
"pre-commit": "lint:staged",
"readmeFilename": "README.md",
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"dev-sync": "echo 'This is not needed anymore, the example is always synced'; exit 1",
"lint": "eslint index.js --max-warnings=0",
"lint:staged": "lint-staged",
"release:major": "node ./changelog --major && npm version major && git push origin && git push origin --follow-tags",
"release:minor": "node ./changelog --minor && npm version minor && git push origin && git push origin --follow-tags",
"release:patch": "node ./changelog --patch && npm version patch && git push origin && git push origin --follow-tags",
"release:version": "node ./changelog --version $VERSION && git push origin && git push origin --follow-tags",
"validate": "yarn validate:prettier && yarn validate:lint && yarn validate:flow",
"validate:flow": "yarn flow",
"validate:lint": "eslint *js components/*.js --max-warnings=0",
"validate:prettier": "prettier --write *.js components/*.js"
}
}