@baby-journey/rn-segmented-progress-bar
Version:
Animated circular progress bar with segments
182 lines (181 loc) • 4.31 kB
JSON
{
"name": "@baby-journey/rn-segmented-progress-bar",
"version": "0.4.0",
"description": "Animated circular progress bar with segments",
"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",
"*.podspec",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepack": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn install"
},
"keywords": [
"react-native",
"ios",
"android",
"progress",
"segmented",
"circular",
"animated",
"animation",
"svg",
"babyjourney"
],
"repository": "https://github.com/baby-journey/rn-segmented-progress-bar",
"author": "charithAmila <dkcadissanayaka@gmail.com> (https://github.com/charithAmila)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/baby-journey/rn-segmented-progress-bar/issues"
},
"homepage": "https://github.com/baby-journey/rn-segmented-progress-bar#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.2.2",
"@react-native-community/eslint-config": "^3.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^11.5.4",
"@types/jest": "^29.5.0",
"@types/react": "18.2.79",
"@types/react-native": "0.70.0",
"commitlint": "^17.0.2",
"del-cli": "^5.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-prettier": "^5.2.0",
"jest": "^28.1.1",
"metro-react-native-babel-preset": "^0.77.0",
"pod-install": "^0.1.0",
"prettier": "^3.5.0",
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-builder-bob": "^0.40.0",
"react-native-svg": "^15.11.0",
"react-test-renderer": "^18.2.0",
"release-it": "^15.0.0",
"typescript": "^5.7.0"
},
"resolutions": {
"@types/react": "18.2.79"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-svg": ">= 13.7.0"
},
"engines": {
"node": ">= 18.0.0"
},
"packageManager": "yarn@1.22.22",
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"testEnvironment": "node",
"globals": {
"performance": {}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"react/react-in-jsx-scope": "off",
"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"
}
]
]
}
}