react-native-easy-calendar
Version:
Customizable, easy-to-use, performant calendar components for React Native
208 lines (207 loc) • 5.69 kB
JSON
{
"name": "react-native-easy-calendar",
"version": "0.3.0",
"description": "Customizable, easy-to-use, performant calendar components for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-easy-calendar.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/*.test.ts",
"!**/*.test.tsx"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"keywords": [
"react-native",
"react native",
"ios",
"android",
"calendar",
"react native calendar",
"react-native-calendar"
],
"repository": "https://github.com/aryella-lacerda/react-native-easy-calendar",
"author": "Aryella Lacerda <aryella.lacerda@gmail.com> (https://github.com/aryella-lacerda)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aryella-lacerda/react-native-easy-calendar/issues"
},
"homepage": "https://github.com/aryella-lacerda/react-native-easy-calendar#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^1.1.4",
"@testing-library/jest-native": "^3.4.2",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/react-native": "^7.0.2",
"@types/detox": "^16.4.1",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"@welldone-software/why-did-you-render": "^5.0.0-alpha.2",
"commitlint": "^8.3.5",
"detox": "^17.4.5",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-react-native-a11y": "^2.0.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-circus": "^26.4.2",
"jest-cli": "^26.4.2",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-animatable": "^1.3.3",
"react-test-renderer": "^16.13.1",
"release-it": "^14.0.3",
"typescript": "^3.8.3"
},
"peerDependencies": {
"dayjs": "^1.8.32",
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"collectCoverage": true,
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript && yarn test"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"eslintConfig": {
"extends": [
"@react-native-community",
"plugin:react-hooks/recommended",
"plugin:react-native-a11y/all",
"prettier"
],
"plugins": [
"detox",
"jest"
],
"env": {
"jasmine": true,
"jest": true,
"detox/detox": true
},
"rules": {
"react-native-a11y/has-accessibility-hint": "off",
"react-native/no-inline-styles": "off",
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 92,
"trailingComma": "es5",
"jsxBracketSameLine": true,
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/",
"coverage/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 92,
"trailingComma": "es5",
"jsxBracketSameLine": true,
"useTabs": false
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"detox": {
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/EasyCalendarExample.app",
"build": "xcodebuild -workspace example/ios/EasyCalendarExample.xcworkspace -scheme EasyCalendarExample -configuration Debug -sdk iphonesimulator -derivedDataPath example/ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/EasyCalendarExample.app",
"build": "xcodebuild -workspace example/ios/EasyCalendarExample.xcworkspace -scheme EasyCalendarExample -configuration Release -sdk iphonesimulator -derivedDataPath example/ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
}
}
},
"dependencies": {}
}