Files
react-native-paper/package.json
2019-09-11 16:45:59 +02:00

137 lines
3.5 KiB
JSON

{
"name": "react-native-paper",
"version": "3.0.0-alpha.5",
"description": "Material design for React Native",
"main": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib",
"babel.js"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/callstack/react-native-paper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/callstack/react-native-paper/issues"
},
"homepage": "https://callstack.github.io/react-native-paper",
"keywords": [
"android",
"ios",
"react native",
"component library",
"ui kit",
"material design",
"bootstrap"
],
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint --ext '.js,.ts,.tsx' .",
"test": "jest",
"prepare": "bob build && node ./scripts/generate-mappings.js",
"release": "release-it",
"bootstrap": "yarn --cwd example && yarn --cwd docs && yarn",
"docs": "yarn --cwd docs",
"example": "yarn --cwd example"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@callstack/react-theme-provider": "^3.0.2",
"color": "^3.1.2",
"react-native-safe-area-view": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@callstack/eslint-config": "^6.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@react-native-community/bob": "^0.4.1",
"@release-it/conventional-changelog": "^1.1.0",
"@types/color": "^3.0.0",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/reach__router": "^1.2.4",
"@types/react-dom": "^16.8.4",
"@types/react-native": "^0.57.61",
"@types/react-native-vector-icons": "^6.4.1",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"all-contributors-cli": "^6.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-test": "^0.1.1",
"chalk": "^2.4.1",
"commitlint": "^7.5.2",
"conventional-changelog-cli": "^2.0.11",
"dedent": "^0.7.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react-native": "^3.5.0",
"flow-bin": "0.92.0",
"glob": "^7.1.3",
"husky": "^1.3.1",
"jest": "^24.8.0",
"jest-file-snapshot": "^0.3.2",
"prettier": "^1.14.3",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "^0.59.8",
"react-native-testing-library": "^1.5.0",
"react-native-vector-icons": "~6.0.2",
"react-test-renderer": "16.8.3",
"release-it": "^12.3.3",
"rimraf": "^2.6.2",
"typescript": "^3.5.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript && yarn test"
}
},
"jest": {
"preset": "react-native",
"cacheDirectory": "./cache/jest",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
]
},
"greenkeeper": {
"ignore": [
"expo",
"flow-bin",
"react",
"react-dom",
"react-native",
"react-test-renderer"
]
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
"typescript"
],
"files": [
"src/"
]
}
}