-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "react-native-device-info",
"version": "8.1.3",
"description": "Get device information using react-native",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"files": [
"__tests__/",
"android/",
"ios/",
"lib/",
"src/",
"jest/",
"web/",
"windows/",
"RNDeviceInfo.podspec",
"babel.config.js",
"jest.config.js",
"jest.setup.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-device-info/react-native-device-info"
},
"homepage": "https://github.com/react-native-device-info/react-native-device-info#readme",
"scripts": {
"analyze": "yarn ts-check && yarn flow-check",
"flow-check": "npx flow-bin check-contents < src/index.js.flow",
"ts-check": "npx tsc --noEmit",
"clean": "cd example && npx react-native-clean-project --keep-node-modules --remove-iOS-build --remove-iOS-pods --remove-android-build --clean-android-project --keep-brew --keep-pods && \\rm -fr ios/Pods",
"dev-sync": "yarn build && cp -r package.json *podspec lib windows android ios src jest example/node_modules/react-native-device-info/",
"lint": "npx eslint ./ --ignore-pattern example --ignore-pattern node_modules --fix --quiet",
"shipit": "yarn clean && semantic-release",
"example:install": "yarn && cd example && yarn && cd .. && yarn dev-sync",
"example:install:pods": "cd example/ios && pod install",
"example:android": "cd example && yarn android",
"example:android:build": "cd example/android && ./gradlew assembleDebug",
"example:ios": "cd example && yarn ios",
"example:ios:build": "cd example/ios && xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace example.xcworkspace -configuration Debug -scheme example -sdk iphonesimulator -arch x86_64 ONLY_ACTIVE_ARCH=YES | xcpretty",
"example:packager": "cd example && yarn start",
"test": "jest",
"precommit": "lint-staged && yarn analyze",
"build": "bob build",
"prepare": "bob build",
"ci:install": "rm -rf ./node_modules && yarn install --frozen-lockfile",
"ci:shipit": "semantic-release"
},
"lint-staged": {
"*.ts": [
"yarn lint",
"git add"
]
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"windows",
"device",
"events",
"cocoapod"
],
"author": "Rebecca Hughes <rebecca@learnium.net> (https://github.com/rebeccahughes)",
"contributors": [
{
"name": "Gant Laborde",
"email": "gant@infinite.red",
"url": "https://github.com/gantman"
},
{
"name": "Mehdi Achour",
"email": "machour@gmail.com",
"url": "https://github.com/machour"
},
{
"name": "Mike Hardy",
"email": "github@mikehardy.net",
"url": "https://github.com/mikehardy"
}
],
"license": "MIT",
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "2.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.20",
"@types/react": "16.14.5",
"@types/react-native": "^0.63.51",
"eslint": "^7.21.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.0",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.63.0",
"prettier": "^2.2.1",
"react": "16.14.0",
"react-native": "^0.63.4",
"react-native-builder-bob": "^0.18.1",
"react-native-windows": "^0.63.23",
"react-test-renderer": "^17.0.1",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"resolutions": {
"@types/react": "16.14.5"
},
"eslintConfig": {
"extends": "@react-native-community"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}