-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "@react-native-community/progress-bar-android",
"version": "1.0.4",
"description": "Progress Bar component for React Native",
"main": "./js/index.js",
"types": "./js/index.d.ts",
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"test": "jest",
"lint": "eslint 'js/**/*.js' 'example/**/*.js'",
"type-check": "tsc --noEmit",
"flow": "flow"
},
"homepage": "https://github.com/react-native-community/react-native-progress-bar-android#readme",
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-progress-bar-android.git"
},
"keywords": [
"react-native",
"react native",
"androidprogressbar",
"android",
"progress-bar"
],
"files": [
"android",
"ios",
"js",
"react-native-progress-bar-android.podspec",
"react-native.config.js"
],
"author": "Wagner Maciel <wagnermaciel@google.com>",
"contributors": [
"Vivian Fang <vf608@nyu.edu>",
"Jesse Katsumata <jesse.katsumata@gmail.com>"
],
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/runtime": "^7.10.3",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react-native": "^0.62.2",
"babel-jest": "^25.1.0",
"eslint": "^7.12.1",
"flow-bin": "^0.129.0",
"jest": "^25.2.3",
"metro-react-native-babel-preset": "0.63.0",
"react": "16.13.1",
"react-native": "^0.63.3",
"react-test-renderer": "16.13.1",
"typescript": "^3.9.6"
},
"jest": {
"preset": "react-native"
},
"publishConfig": {
"access": "public"
},
"codegenConfig": {
"name": "rnandroidprogressbar",
"type": "components",
"jsSrcsDir": "./js",
"android": {
"javaPackageName": "com.reactnativecommunity.androidprogressbar"
}
}
}