-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.58 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
{
"name": "react-native-manage-wallpaper",
"title": "React Native Manage Wallpaper",
"version": "1.2.1",
"description": "Android wallpaper manager for changing wallpaper.",
"main": "index.js",
"files": [
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meharbhutta/react-native-manage-wallpaper.git",
"baseUrl": "https://github.com/meharbhutta/react-native-manage-wallpaper"
},
"author": {
"name": "Muhammad Mehar",
"email": "[email protected]",
"url": "https://twitter.com/meharbhutta"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@react-native-community/eslint-config": "0.0.5",
"babel-eslint": "10.0.2",
"eslint": "6.1.0",
"eslint-plugin-flowtype": "4.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-native": "3.7.0",
"flow-bin": "^0.105.2",
"generate-changelog": "1.8.0",
"husky": "3.0.3",
"idx": "2.5.6",
"lint-staged": "9.2.1",
"minimist": "1.2.0",
"pre-commit": "1.2.2",
"prettier": "^1.18.2",
"react": "16.9.0",
"react-native": "0.61.2",
"simple-git": "1.124.0"
},
"keywords": [
"react-native",
"wallpaper",
"manager",
"react native",
"wallpaper manager",
"wallpaper-manager",
"manage",
"manage wallpaper",
"manage-wallpaper",
"android",
"react",
"bridge"
],
"nativePackage": true,
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"lint-staged": {
"*.js": [
"yarn validate",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"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 --max-warnings=0",
"validate:prettier": "prettier --write *.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}