react-native-camera-kit/package.json
David Bertet a13aa787c4
Add iOS linter & report issues on PR (#634)
* Add iOS linter & report issues on PR

* Fix lint errors

---------

Co-authored-by: Seph Soliman <github@seph.dk>
2024-04-30 16:10:07 -07:00

52 lines
1.7 KiB
JSON

{
"name": "react-native-camera-kit",
"repository": {
"type": "git",
"url": "https://github.com/teslamotors/react-native-camera-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "14.0.0-beta13",
"description": "A high performance, fully featured, rock solid camera library for React Native applications",
"nativePackage": true,
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rm -rf dist/",
"test": "jest",
"lint": "yarn eslint -c .eslintrc.js",
"check-ios": "scripts/check-ios.sh",
"release": "yarn clean && yarn build && yarn publish --verbose",
"release:beta": "yarn clean && yarn build && yarn publish --tag beta --verbose",
"release:local": "yarn clean && yarn build && tmp=$(mktemp) && yarn pack --filename $tmp.tar.gz && open -R $tmp.tar.gz",
"start": "watchman watch-del-all && node node_modules/react-native/local-cli/cli.js start",
"bootstrap": "cd example/ && bundle install && yarn && cd ios/ && bundle exec pod install",
"bootstrap-linux": "cd example/ && yarn"
},
"main": "dist/index.js",
"module": "dist/index.js",
"source": "./src/",
"dependencies": {},
"license": "MIT",
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"babel-jest": "22.4.1",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.0.1",
"metro-react-native-babel-preset": "0.51.0",
"prettier": "^2.1.2",
"react": "16.11.0",
"react-native": "0.62.3",
"react-test-renderer": "16.6.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}