UNPKG

4.03 kBJSONView Raw
1{
2 "name": "react-native-paper",
3 "version": "4.10.1",
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.10.3",
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": "^2.12.0",
66 "@typescript-eslint/parser": "^2.12.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-test": "^0.1.1",
72 "chalk": "^4.0.0",
73 "commitlint": "^8.3.4",
74 "conventional-changelog-cli": "^2.0.11",
75 "dedent": "^0.7.0",
76 "eslint": "^6.7.2",
77 "eslint-config-callstack-io": "^1.1.1",
78 "eslint-plugin-prettier": "^3.0.0",
79 "eslint-plugin-react-native": "^3.5.0",
80 "expo-constants": "^9.3.5",
81 "flow-bin": "0.92.0",
82 "glob": "^7.1.3",
83 "husky": "^1.3.1",
84 "jest": "^26.1.0",
85 "jest-file-snapshot": "^0.3.2",
86 "metro-react-native-babel-preset": "^0.59.0",
87 "prettier": "^2.0.5",
88 "react": "16.13.1",
89 "react-dom": "16.13.1",
90 "react-native": "^0.63.0",
91 "react-native-builder-bob": "^0.17.1",
92 "react-native-testing-library": "^1.5.0",
93 "react-native-vector-icons": "~6.3.0",
94 "react-test-renderer": "16.13.1",
95 "release-it": "^13.4.0",
96 "rimraf": "^3.0.2",
97 "typescript": "^3.8.3"
98 },
99 "peerDependencies": {
100 "react": "*",
101 "react-native": "*",
102 "react-native-vector-icons": "*"
103 },
104 "husky": {
105 "hooks": {
106 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
107 "pre-commit": "yarn lint && yarn typescript && yarn test"
108 }
109 },
110 "jest": {
111 "preset": "react-native",
112 "setupFiles": [
113 "<rootDir>/testSetup.js"
114 ],
115 "cacheDirectory": "./cache/jest",
116 "modulePathIgnorePatterns": [
117 "<rootDir>/example/node_modules",
118 "<rootDir>/lib/"
119 ],
120 "watchPathIgnorePatterns": [
121 "__fixtures__\\/[^/]+\\/(output|error)\\.js"
122 ]
123 },
124 "greenkeeper": {
125 "ignore": [
126 "expo",
127 "flow-bin",
128 "react",
129 "react-dom",
130 "react-native",
131 "react-test-renderer",
132 "@types/react-native",
133 "@types/jest",
134 "husky",
135 "eslint"
136 ]
137 },
138 "react-native-builder-bob": {
139 "source": "src",
140 "output": "lib",
141 "targets": [
142 "commonjs",
143 "module",
144 [
145 "typescript",
146 {
147 "project": "tsconfig.build.json"
148 }
149 ]
150 ],
151 "files": [
152 "src/"
153 ]
154 }
155}