2015-04-01 01:02:57 +00:00
|
|
|
{
|
|
|
|
"name": "react-native-camera",
|
2015-04-19 22:53:30 +00:00
|
|
|
"description": "A Camera component for React Native. Also reads barcodes.",
|
2017-12-31 14:55:56 +00:00
|
|
|
"version": "0.12.0",
|
2015-04-01 01:02:57 +00:00
|
|
|
"author": "Lochlan Wansbrough <lochie@live.com> (http://lwansbrough.com)",
|
2017-05-25 07:14:37 +00:00
|
|
|
"collective": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/react-native-camera",
|
|
|
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
2017-12-31 14:55:56 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-01 21:16:02 +00:00
|
|
|
"lodash": "^4.17.4",
|
2017-12-31 14:55:56 +00:00
|
|
|
"prop-types": "^15.5.10"
|
|
|
|
},
|
2017-12-31 15:30:33 +00:00
|
|
|
"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"
|
|
|
|
},
|
2017-12-31 14:55:56 +00:00
|
|
|
"homepage": "https://github.com/react-native-community/react-native-camera",
|
|
|
|
"keywords": [
|
|
|
|
"barcode",
|
|
|
|
"camera",
|
|
|
|
"code",
|
|
|
|
"native",
|
|
|
|
"qr",
|
|
|
|
"react",
|
|
|
|
"react-native"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
2017-12-31 15:30:33 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"yarn prettier",
|
|
|
|
"eslint --fix",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"main": "src/index.js",
|
2017-12-31 14:55:56 +00:00
|
|
|
"nativePackage": true,
|
2017-12-31 15:30:33 +00:00
|
|
|
"pre-commit": "lint:staged",
|
2017-12-31 14:55:56 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/react-native-community/react-native-camera.git"
|
2017-12-31 15:30:33 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint src",
|
|
|
|
"lint:staged": "lint-staged",
|
|
|
|
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100"
|
2017-05-25 07:14:37 +00:00
|
|
|
}
|
2017-06-15 19:55:43 +00:00
|
|
|
}
|