UNPKG

react-native-tableview-simple

Version:

React Native component for TableView made with pure CSS

88 lines (87 loc) 2.65 kB
{ "name": "react-native-tableview-simple", "description": "React Native component for TableView made with pure CSS", "homepage": "https://github.com/Purii/react-native-tableview-simple", "version": "4.3.1", "author": "Patrick Puritscher <hello@patrickpuritscher.com>", "scripts": { "clean": "watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn", "jest": "jest ./src/", "eslint:ci": "eslint index.js ./src/ --ext .js,.jsx,.tsx,.ts", "eslint:fix": "eslint index.js ./src/ --fix --ext .js,.jsx,.tsx,.ts", "test:ci": "yarn run eslint:ci && yarn run jest && yarn tsc --noEmit", "tsc": "tsc --skipLibCheck", "build:module": "yarn tsc --outDir ./lib/module --sourceMap", "build:commonjs": "yarn tsc --module commonjs --outDir ./lib/commonjs --sourceMap", "build": "rimraf ./lib && yarn build:module && yarn build:commonjs", "release:prepare": "yarn build", "release": "standard-version" }, "main": "lib/commonjs/index.js", "react-native": "src/index.ts", "module": "lib/module/index.js", "types": "lib/typescript/index.d.ts", "files": [ "/src", "/lib", "/README.md", "/LICENSE" ], "jest": { "preset": "react-native", "testPathIgnorePatterns": [ "/node_modules/", "<rootDir>/example/" ], "modulePathIgnorePatterns": [ "<rootDir>/example/" ] }, "license": "MIT", "keywords": [ "react-native", "react-component", "tableview", "UITableView", "crossplatform", "ios", "android" ], "peerDependencies": { "react": "*", "react-native": ">=0.64" }, "bugs": { "url": "https://github.com/Purii/react-native-tableview-simple/issues" }, "repository": { "type": "git", "url": "git@github.com:Purii/react-native-tableview-simple.git" }, "devDependencies": { "@commitlint/cli": "15.0.0", "@commitlint/config-conventional": "15.0.0", "@types/jest": "27.0.3", "@types/react": "17.0.37", "@types/react-native": "0.66.8", "@types/react-test-renderer": "17.0.1", "@typescript-eslint/eslint-plugin": "5.6.0", "@typescript-eslint/parser": "5.6.0", "babel-jest": "27.4.4", "babel-preset-react-native": "4.0.1", "eslint": "8.4.1", "eslint-config-prettier": "8.3.0", "eslint-plugin-prettier": "4.0.0", "eslint-plugin-react": "7.27.1", "husky": "7.0.4", "jest": "27.4.4", "lint-staged": "12.1.2", "prettier": "2.5.1", "react": "17.0.2", "react-native": "0.66.4", "react-test-renderer": "17.0.2", "rimraf": "3.0.2", "standard-version": "9.3.2", "typescript": "4.5.3" } }