UNPKG

react-native-known-styling-properties

Version:
84 lines (83 loc) 2 kB
{ "name": "react-native-known-styling-properties", "version": "1.3.0", "description": "List of known React Native specific styling properties.", "main": "dist/index.js", "files": [ "dist", "src", "CHANGELOG.md", "README.md" ], "scripts": { "precommit": "lint-staged", "prepublish": "npm run build", "prebuild": "rimraf dist", "build": "babel src --ignore index.spec.js --out-dir dist", "release": "np", "lint": "eslint src/**/*.js", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/kristerkari/react-native-known-styling-properties.git" }, "author": "Krister Kari", "license": "MIT", "bugs": { "url": "https://github.com/kristerkari/react-native-known-styling-properties/issues" }, "homepage": "https://github.com/kristerkari/react-native-known-styling-properties#readme", "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-jest": "23.6.0", "babel-preset-es2015": "^6.24.1", "eslint": "^8.19.0", "eslint-plugin-jest": "^27.1.6", "husky": "^8.0.1", "jest": "21.2.1", "lint-staged": "^15.2.0", "np": "^9.2.0", "prettier": "^3.0.0", "regenerator-runtime": "^0.14.0", "rimraf": "^5.0.1" }, "lint-staged": { "*.{js,md,json}": [ "prettier --write", "git add" ] }, "babel": { "presets": [ "es2015" ] }, "eslintConfig": { "parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "env": { "node": true, "jest/globals": true }, "extends": "eslint:recommended", "plugins": [ "jest" ], "rules": { "jest/no-disabled-tests": "warn", "jest/no-focused-tests": "error", "jest/no-identical-title": "error", "jest/prefer-to-have-length": "warn", "jest/valid-expect": "error" } }, "prettier": { "semi": true, "singleQuote": false, "trailingComma": "none" } }