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-03-10 17:02:30 -03:00
|
|
|
"version": "1.0.2",
|
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",
|
2017-12-31 13:30:33 -02:00
|
|
|
"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",
|
2018-02-12 07:59:32 -02:00
|
|
|
"husky": "^0.14.3",
|
2017-12-31 13:30:33 -02:00
|
|
|
"lint-staged": "^5.0.0",
|
|
|
|
"pre-commit": "^1.2.2",
|
2018-02-14 17:35:20 -02:00
|
|
|
"prettier": "^1.9.2",
|
|
|
|
"generate-changelog": "1.7.0",
|
|
|
|
"simple-git": "1.89.0",
|
|
|
|
"idx": "2.2.0",
|
|
|
|
"minimist": "1.2.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",
|
2018-02-23 10:37:28 -03:00
|
|
|
"types": "types",
|
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",
|
2017-12-31 13:30:33 -02:00
|
|
|
"lint": "eslint src",
|
|
|
|
"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-02-14 18:00:36 -02:00
|
|
|
"release:version": "node ./changelog --version $VERSION && git push origin && git push origin --follow-tags",
|
2018-02-12 08:00:15 -02:00
|
|
|
"release:patch": "npm version patch && git push --follow-tags",
|
|
|
|
"release:minor": "npm version minor && git push --follow-tags",
|
|
|
|
"release:major": "npm version major && git push --follow-tags"
|
2017-05-25 03:14:37 -04:00
|
|
|
}
|
2017-06-15 12:55:43 -07:00
|
|
|
}
|