forked from react-native-share/react-native-share
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "react-native-share",
"description": "Social share, sending simple data to other apps.",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/react-native-share.git"
},
"devDependencies": {
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"babel-eslint": "^8.2.1",
"eslint": "^4.17.0",
"eslint-plugin-flowtype": "^2.46.2",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-native": "^3.2.0",
"flow-bin": "^0.77.0",
"generate-changelog": "1.7.0",
"husky": "^0.14.3",
"idx": "^2.4.0",
"lint-staged": "^7.0.0",
"minimist": "1.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.12.0",
"react": "16.3.1",
"react-native": "0.55.2",
"simple-git": "1.89.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",
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"readmeFilename": "README.md",
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint src --max-warnings=0",
"lint:staged": "lint-staged",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100",
"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"
}
}