2015-03-31 18:02:57 -07:00
|
|
|
{
|
|
|
|
"name": "react-native-camera",
|
2015-04-19 15:53:30 -07:00
|
|
|
"description": "A Camera component for React Native. Also reads barcodes.",
|
2018-05-21 17:49:24 -03:00
|
|
|
"version": "1.1.4",
|
2015-03-31 18:02:57 -07:00
|
|
|
"author": "Lochlan Wansbrough <lochie@live.com> (http://lwansbrough.com)",
|
2017-05-25 03:14:37 -04:00
|
|
|
"collective": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/react-native-camera",
|
|
|
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
2017-12-31 12:55:56 -02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-01 19:16:02 -02:00
|
|
|
"lodash": "^4.17.4",
|
2017-12-31 12:55:56 -02:00
|
|
|
"prop-types": "^15.5.10"
|
|
|
|
},
|
2017-12-31 13:30:33 -02:00
|
|
|
"devDependencies": {
|
2018-02-12 07:51:54 -02:00
|
|
|
"@commitlint/cli": "^6.1.0",
|
|
|
|
"@commitlint/config-conventional": "^6.1.0",
|
2018-04-15 12:13:57 -03:00
|
|
|
"babel-eslint": "^8.2.1",
|
|
|
|
"eslint": "^4.17.0",
|
2018-04-15 08:19:02 -03:00
|
|
|
"eslint-plugin-flowtype": "^2.46.2",
|
2018-04-15 12:13:57 -03:00
|
|
|
"eslint-plugin-import": "^2.11.0",
|
|
|
|
"eslint-plugin-react": "^7.6.1",
|
2017-12-31 13:30:33 -02:00
|
|
|
"eslint-plugin-react-native": "^3.2.0",
|
2018-04-15 08:02:49 -03:00
|
|
|
"generate-changelog": "1.7.0",
|
2018-02-12 07:59:32 -02:00
|
|
|
"husky": "^0.14.3",
|
2018-04-15 08:02:49 -03:00
|
|
|
"idx": "2.2.0",
|
2018-04-15 11:44:40 -03:00
|
|
|
"lint-staged": "^7.0.0",
|
2018-04-15 08:02:49 -03:00
|
|
|
"minimist": "1.2.0",
|
2017-12-31 13:30:33 -02:00
|
|
|
"pre-commit": "^1.2.2",
|
2018-04-15 11:44:40 -03:00
|
|
|
"prettier": "^1.12.0",
|
2018-04-15 12:13:57 -03:00
|
|
|
"react": "16.3.1",
|
2018-04-15 08:02:49 -03:00
|
|
|
"react-native": "^0.55.2",
|
|
|
|
"simple-git": "1.89.0"
|
2017-12-31 13:30:33 -02:00
|
|
|
},
|
2017-12-31 12:55:56 -02: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 13:30:33 -02:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"yarn prettier",
|
|
|
|
"eslint --fix",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"main": "src/index.js",
|
2017-12-31 12:55:56 -02:00
|
|
|
"nativePackage": true,
|
2017-12-31 13:30:33 -02:00
|
|
|
"pre-commit": "lint:staged",
|
2017-12-31 12:55:56 -02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/react-native-community/react-native-camera.git"
|
2017-12-31 13:30:33 -02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-02-12 07:51:54 -02:00
|
|
|
"commitmsg": "commitlint -e $GIT_PARAMS",
|
2018-04-15 11:44:40 -03:00
|
|
|
"lint": "eslint src --max-warnings=0",
|
2017-12-31 13:30:33 -02:00
|
|
|
"lint:staged": "lint-staged",
|
2018-02-12 07:58:08 -02:00
|
|
|
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100",
|
2018-03-24 12:29:25 -03:00
|
|
|
"release:major": "node ./changelog --major && npm version major && git push origin && git push origin --follow-tags",
|
|
|
|
"release:minor": "node ./changelog --minor && npm version minor && git push origin && git push origin --follow-tags",
|
2018-04-15 08:02:49 -03:00
|
|
|
"release:patch": "node ./changelog --patch && npm version patch && git push origin && git push origin --follow-tags",
|
|
|
|
"release:version": "node ./changelog --version $VERSION && git push origin && git push origin --follow-tags"
|
|
|
|
},
|
|
|
|
"types": "types"
|
2017-06-15 12:55:43 -07:00
|
|
|
}
|