react-native-idscan-sdk
Version:
SDK for IDScan.net in React Native
131 lines (130 loc) • 3.07 kB
JSON
{
"name": "react-native-idscan-sdk",
"version": "1.2.0",
"description": "SDK for IDScan.net in React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-idscan-sdk.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build",
"release": "release-it",
"example:start": "cd example && npm run start",
"example:android": "cd example && npm run android",
"example:ios": "cd example && npm run ios",
"pods": "cd example && pod-install --quiet",
"bootstrap": "cd example && npm install && pod-install --quiet"
},
"keywords": [
"react-native",
"ios",
"android",
"idscan"
],
"repository": "https://github.com/sourcetoad/react-native-idscan-sdk",
"author": "Sourcetoad",
"license": "MIT",
"bugs": {
"url": "https://github.com/sourcetoad/react-native-idscan-sdk/issues"
},
"homepage": "https://github.com/sourcetoad/react-native-idscan-sdk#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.2",
"@react-native/babel-preset": "^0.74.0",
"@types/jest": "^28.1.2",
"@types/react": "~17.0.21",
"@types/react-native": "0.70.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.73.1",
"react-native-builder-bob": "^0.20.0",
"typescript": "^5.0.2"
},
"resolutions": {
"@types/react": "17.0.21"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">= 16.0.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}