forked from moaazsidat/react-native-qrcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "react-native-qrcode-scanner",
"version": "1.0.1",
"description": "A QR code scanner for React Native.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moaazsidat/react-native-qrcode-scanner.git"
},
"keywords": [
"react-native",
"react",
"ios",
"qrcode",
"qr",
"scanner",
"barcode"
],
"author": "Moaaz Sidat",
"license": "MIT",
"bugs": {
"url": "https://github.com/moaazsidat/react-native-qrcode-scanner/issues"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-native-permissions": "^1.1.1"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
},
"peerDependencies": {
"react-native-camera": "^1.0.2"
},
"homepage": "https://github.com/moaazsidat/react-native-qrcode-scanner#readme",
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --tab-width 2 --write",
"git add"
]
}
}