forked from fbacker/react-native-camera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "react-native-camera",
"description": "A Camera component for React Native. Also reads barcodes.",
"version": "0.12.0",
"author": "Lochlan Wansbrough <[email protected]> (http://lwansbrough.com)",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-camera",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.12.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-react-native": "^3.2.0",
"lint-staged": "^5.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2"
},
"homepage": "https://github.com/react-native-community/react-native-camera",
"keywords": [
"barcode",
"camera",
"code",
"native",
"qr",
"react",
"react-native"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"eslint --fix",
"git add"
]
},
"main": "src/index.js",
"nativePackage": true,
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-camera.git"
},
"scripts": {
"lint": "eslint src",
"lint:staged": "lint-staged",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100"
}
}