-
-
Notifications
You must be signed in to change notification settings - Fork 578
/
package.json
72 lines (72 loc) · 2.29 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
71
72
{
"name": "react-native-material-kit",
"version": "0.6.0-beta.2",
"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.7",
"@types/jest": "^25.1.0",
"@types/ramda": "^0.26.0",
"@types/react-native": "^0.57.7",
"@types/react-test-renderer": "^16.9.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "^16.12.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^4.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"ramda": "^0.27.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 ln && yarn build && api-extractor run --local --verbose && yarn api-md",
"clean": "rm -rf lib temp etc dist docs && yarn clean-ln",
"clean-ln": "rm -f src/mdl/Spinner.tsx",
"ln": "ln -f src/mdl/Spinner.ios.tsx src/mdl/Spinner.tsx",
"build-publish": "yarn build-docs && yarn clean-ln && rm lib/mdl/Spinner.js",
"setup": "mkdir temp etc dist docs",
"api-md": "api-documenter markdown --input-folder temp --output-folder docs/api"
},
"jest": {
"testPathIgnorePatterns": [ "/node_modules/", "/example/" ]
}
}