-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
35 lines (35 loc) · 876 Bytes
/
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
{
"name": "react-native-settings",
"version": "1.0.0",
"description": "Access iOS and Android device settings from React Native",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:rmrs/react-native-settings.git"
},
"keywords": [
"react-native",
"react-native-settings",
"settings"
],
"author": "Erez Rokah <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.40"
},
"bugs": {
"url": "https://github.com/rmrs/react-native-settings/issues"
},
"homepage": "https://github.com/rmrs/react-native-settings#readme",
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"husky": "^4.2.3",
"prettier": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}