This repository has been archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 517
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "react-native-qrcode-scanner",
"version": "1.5.5",
"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": "^2.0.2"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^4.19.1",
"eslint-plugin-react-native": "^3.8.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",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --tab-width 2 --write",
"git add"
]
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-qrcode-scanner"
}
}