UNPKG

4.18 kBJSONView Raw
1{
2 "name": "react-native-paper",
3 "version": "4.12.4",
4 "description": "Material design for React Native",
5 "main": "lib/commonjs/index.js",
6 "module": "lib/module/index.js",
7 "react-native": "src/index.tsx",
8 "source": "src/index.tsx",
9 "types": "lib/typescript/index.d.ts",
10 "files": [
11 "src",
12 "lib",
13 "babel.js"
14 ],
15 "sideEffects": false,
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/callstack/react-native-paper.git"
19 },
20 "author": "",
21 "license": "MIT",
22 "bugs": {
23 "url": "https://github.com/callstack/react-native-paper/issues"
24 },
25 "homepage": "https://callstack.github.io/react-native-paper",
26 "keywords": [
27 "android",
28 "ios",
29 "react native",
30 "component library",
31 "ui kit",
32 "material design",
33 "bootstrap"
34 ],
35 "scripts": {
36 "typescript": "tsc --noEmit",
37 "lint": "eslint --ext '.js,.ts,.tsx' .",
38 "test": "jest",
39 "prepare": "bob build && node ./scripts/generate-mappings.js",
40 "release": "release-it",
41 "bootstrap": "yarn --cwd example && yarn --cwd docs && yarn",
42 "docs": "yarn --cwd docs",
43 "example": "yarn --cwd example"
44 },
45 "publishConfig": {
46 "registry": "https://registry.npmjs.org/"
47 },
48 "dependencies": {
49 "@callstack/react-theme-provider": "^3.0.7",
50 "color": "^3.1.2",
51 "react-native-iphone-x-helper": "^1.3.1"
52 },
53 "devDependencies": {
54 "@babel/core": "^7.17.0",
55 "@babel/runtime": "^7.10.3",
56 "@callstack/eslint-config": "^9.0.0",
57 "@commitlint/config-conventional": "^8.3.4",
58 "@release-it/conventional-changelog": "^1.1.0",
59 "@types/color": "^3.0.0",
60 "@types/jest": "^24.0.13",
61 "@types/node": "^13.1.0",
62 "@types/react-dom": "^16.8.4",
63 "@types/react-native": "^0.66.1",
64 "@types/react-native-vector-icons": "^6.4.1",
65 "@typescript-eslint/eslint-plugin": "^5.9.0",
66 "@typescript-eslint/parser": "^5.9.0",
67 "all-contributors-cli": "^6.1.1",
68 "babel-cli": "^6.26.0",
69 "babel-core": "^7.0.0-bridge.0",
70 "babel-jest": "^26.1.0",
71 "babel-loader": "^8.2.3",
72 "babel-test": "^0.1.1",
73 "chalk": "^4.0.0",
74 "commitlint": "^8.3.4",
75 "conventional-changelog-cli": "^2.0.11",
76 "dedent": "^0.7.0",
77 "eslint": "^6.7.2",
78 "eslint-config-callstack-io": "^1.1.1",
79 "eslint-plugin-prettier": "^3.0.0",
80 "eslint-plugin-react-native": "^3.5.0",
81 "expo-constants": "^9.3.5",
82 "flow-bin": "0.92.0",
83 "glob": "^7.1.3",
84 "husky": "^1.3.1",
85 "jest": "^26.1.0",
86 "jest-file-snapshot": "^0.3.2",
87 "metro-react-native-babel-preset": "^0.67.0",
88 "prettier": "^2.5.0",
89 "react": "17.0.2",
90 "react-dom": "17.0.2",
91 "react-native": "^0.64.3",
92 "react-native-builder-bob": "^0.17.1",
93 "react-native-testing-library": "^1.5.0",
94 "react-native-vector-icons": "~6.3.0",
95 "react-test-renderer": "16.13.1",
96 "release-it": "^13.4.0",
97 "rimraf": "^3.0.2",
98 "typescript": "^4.5.4"
99 },
100 "peerDependencies": {
101 "react": "*",
102 "react-native": "*",
103 "react-native-vector-icons": "*"
104 },
105 "husky": {
106 "hooks": {
107 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
108 "pre-commit": "yarn lint && yarn typescript && yarn test"
109 }
110 },
111 "jest": {
112 "preset": "react-native",
113 "setupFiles": [
114 "<rootDir>/testSetup.js"
115 ],
116 "cacheDirectory": "./cache/jest",
117 "modulePathIgnorePatterns": [
118 "<rootDir>/example/node_modules",
119 "<rootDir>/lib/"
120 ],
121 "watchPathIgnorePatterns": [
122 "__fixtures__\\/[^/]+\\/(output|error)\\.js"
123 ],
124 "transformIgnorePatterns": [
125 "node_modules/(?!(@react-native|react-native|react-native-iphone-x-helper)/)"
126 ]
127 },
128 "greenkeeper": {
129 "ignore": [
130 "expo",
131 "flow-bin",
132 "react",
133 "react-dom",
134 "react-native",
135 "react-test-renderer",
136 "@types/react-native",
137 "@types/jest",
138 "husky",
139 "eslint"
140 ]
141 },
142 "react-native-builder-bob": {
143 "source": "src",
144 "output": "lib",
145 "targets": [
146 "commonjs",
147 "module",
148 [
149 "typescript",
150 {
151 "project": "tsconfig.build.json"
152 }
153 ]
154 ],
155 "files": [
156 "src/"
157 ]
158 }
159}