UNPKG

2.26 kBJSONView Raw
1{
2 "name": "react-native-material-kit",
3 "version": "0.6.0-beta.1",
4 "description": "Bringing Material Design to React Native",
5 "main": "lib/index.js",
6 "typings": "lib/react-native-material-kit.d.ts",
7 "author": "Yingxin Wu <yingxinwu.g@gmail.com>",
8 "contributors": [
9 "Quentin Valmori (https://github.com/Crash--)",
10 "Alexander Price (https://github.com/alexprice91)"
11 ],
12 "license": "MIT",
13 "keywords": [
14 "react",
15 "native",
16 "react-component",
17 "react-native",
18 "react-native-component",
19 "ios",
20 "android",
21 "material design",
22 "MaterialKit"
23 ],
24 "homepage": "https://github.com/xinthink/react-native-material-kit",
25 "bugs": "https://github.com/xinthink/react-native-material-kit/issues",
26 "repository": {
27 "type": "git",
28 "url": "git://github.com/xinthink/react-native-material-kit.git"
29 },
30 "devDependencies": {
31 "@microsoft/api-documenter": "^7.3.11",
32 "@microsoft/api-extractor": "^7.3.4",
33 "@react-native-community/eslint-config": "~0.0.7",
34 "@types/jest": "^25.1.0",
35 "@types/ramda": "^0.26.0",
36 "@types/react-native": "^0.57.7",
37 "@types/react-test-renderer": "^16.9.0",
38 "babel-eslint": "^10.0.3",
39 "babel-jest": "^25.1.0",
40 "eslint": "^6.8.0",
41 "jest": "^25.1.0",
42 "react-native-typescript-transformer": "^1.2.13",
43 "react-test-renderer": "^16.12.0",
44 "tslint": "^6.0.0",
45 "tslint-config-prettier": "^1.18.0",
46 "tslint-config-standard": "^9.0.0",
47 "tslint-react": "^4.2.0",
48 "typescript": "^3.7.5"
49 },
50 "dependencies": {
51 "ramda": "^0.27.0"
52 },
53 "peerDependencies": {
54 "react": "*",
55 "react-native": ">=0.50.0"
56 },
57 "scripts": {
58 "lint": "tslint -p .",
59 "test": "jest",
60 "build": "yarn lint && tsc",
61 "build-docs": "yarn clean && yarn setup && yarn ln && yarn build && api-extractor run --local --verbose && yarn api-md",
62 "clean": "rm -rf lib temp etc dist docs && yarn clean-ln",
63 "clean-ln": "rm -f src/mdl/Spinner.tsx",
64 "ln": "ln -f src/mdl/Spinner.ios.tsx src/mdl/Spinner.tsx",
65 "build-publish": "yarn build-docs && yarn clean-ln && rm lib/mdl/Spinner.js",
66 "setup": "mkdir temp etc dist docs",
67 "api-md": "api-documenter markdown --input-folder temp --output-folder docs/api"
68 }
69}