forked from xinthink/react-native-material-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-native-material-kit",
"version": "0.5.1",
"description": "Bringing Material Design to React Native",
"main": "lib/index.js",
"typings": "lib/react-native-material-kit.d.ts",
"author": "Yingxin Wu <[email protected]>",
"contributors": [
"Quentin Valmori (https://github.com/Crash--)",
"Alexander Price (https://github.com/alexprice91)"
],
"license": "MIT",
"keywords": [
"react",
"native",
"react-component",
"react-native",
"react-native-component",
"ios",
"android",
"material design",
"MaterialKit"
],
"homepage": "https://github.com/xinthink/react-native-material-kit",
"bugs": "https://github.com/xinthink/react-native-material-kit/issues",
"repository": {
"type": "git",
"url": "git://github.com/xinthink/react-native-material-kit.git"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.3.11",
"@microsoft/api-extractor": "^7.3.4",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^24.0.16",
"@types/ramda": "^0.25.40",
"@types/react-native": "^0.57.7",
"@types/react-test-renderer": "^16.8.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.8.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^24.8.0",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "^16.8.6",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.1.3"
},
"dependencies": {
"ramda": "^0.25.0"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.50.0"
},
"scripts": {
"lint": "tslint -p .",
"test": "jest",
"build": "yarn lint && tsc",
"build-docs": "yarn clean && yarn setup && yarn build && api-extractor run --local --verbose && yarn api-md",
"clean": "rm -rf lib temp etc dist docs",
"setup": "mkdir temp etc dist docs",
"api-md": "api-documenter markdown --input-folder temp --output-folder docs"
}
}