forked from react-native-progress-view/progress-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "@react-native-community/progress-view",
"version": "1.0.2",
"description": "React Native Progress View iOS Library",
"keywords": [
"ProgressViewIOS",
"progress",
"progress view",
"react native",
"react-native"
],
"homepage": "https://github.com/react-native-community/react-native-progress-view#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/react-native-progress-view.git"
},
"license": "MIT",
"author": "Kaiden Sin <ksnz93@gmail.com>",
"files": [
"android",
"ios",
"js",
"react-native-progress-view.podspec",
"index.js",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"flow": "flow",
"lint": "eslint .",
"run:ios": "node node_modules/react-native/local-cli/cli.js run-ios --project-path \"./example/ios\"",
"start": "node node_modules/react-native/local-cli/cli.js start --projectRoot example --watchFolders $PWD",
"test": "jest",
"type-check": "tsc --noEmit"
},
"jest": {
"preset": "react-native"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@react-native-community/eslint-config": "^0.0.7",
"@react-native-community/eslint-plugin": "^1.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "^0.61.2",
"babel-jest": "24.7.1",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"flow-bin": "0.105.2",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "0.53.1",
"prettier": "^1.19.1",
"react": "16.8.3",
"react-native": "^0.61.5",
"react-test-renderer": "16.8.3",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^16.8.3",
"react-native": ">=0.59.5"
},
"publishConfig": {
"access": "public"
}
}