@pavelgric/react-native-theme-provider
Version:
Simple theme provider for React Native
77 lines (76 loc) • 2.22 kB
JSON
{
"name": "@pavelgric/react-native-theme-provider",
"version": "0.3.0",
"description": "Simple theme provider for React Native",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "jest",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"compile": "rm -rf lib && tsc -p ./tsconfig.prod.json",
"prepare": "husky install",
"tsc": "tsc --noEmit",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CptFabulouso/react-native-theme-provider.git"
},
"keywords": [
"react-native",
"theme"
],
"author": "Pavel Gric",
"license": "MIT",
"bugs": {
"url": "https://github.com/CptFabulouso/react-native-theme-provider/issues"
},
"homepage": "https://github.com/CptFabulouso/react-native-theme-provider#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.2",
"@types/jest": "^29.5.1",
"@types/node": "^17.0.32",
"@types/react-native": "^0.67.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-jest": "^29.5.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"husky": "^5.1.3",
"jest": "^29.5.0",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.67.0",
"prettier": "^2.1.2",
"react": "18.2.0",
"react-native": "^0.71.8",
"react-test-renderer": "^18.2.0",
"release-it": "^15.11.0",
"typescript": "^5.0.4"
},
"resolutions": {
"@types/react": "^17"
},
"peerDependencies": {
"react-native": "*"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0"
],
"example/src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0"
]
}
}