-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
43 lines (43 loc) · 993 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
36
37
38
39
40
41
42
43
{
"name": "react-native-idnow",
"version": "0.1.8",
"description": "React Native IDnow binding for iOS/Android platforms.",
"main": "index.js",
"scripts": {
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,md,graphql}'"
},
"keywords": [
"react-native",
"IDnow"
],
"repository": "git+https://github.com/bitwala/react-native-idnow.git",
"homepage": "https://github.com/bitwala/react-native-idnow#readme",
"author": "Bitwala",
"bugs": {
"url": "https://github.com/bitwala/react-native-idnow/issues"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,graphql}": [
"prettier --write",
"git add"
]
},
"license": "MIT",
"peerDependencies": {
"react-native": "^0.41.2"
},
"devDependencies": {
"husky": "4.2.3",
"lint-staged": "10.0.8",
"prettier": "1.19.1"
}
}