forked from react-native-masked-view/masked-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "@react-native-masked-view/masked-view",
"description": "React Native MaskedView component",
"types": "./types/index.d.ts",
"main": "index.js",
"author": "Mike Nedosekin <crespo8800@gmail.com>",
"license": "MIT",
"version": "0.3.1",
"homepage": "https://github.com/react-native-masked-view/masked-view#readme",
"keywords": [
"react-native",
"react native",
"masked-view",
"masked view"
],
"scripts": {
"test:flow": "flow check",
"test:js": "echo 0",
"test:lint": "eslint ./",
"test:typescript": "tsc -noEmit",
"test:prettier": "prettier --check './**/*.js'"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.71"
},
"files": [
"index.js",
"android",
"ios",
"js",
"types",
"RNCMaskedView.podspec"
],
"dependencies": {},
"devDependencies": {
"@react-native/eslint-config": "0.73.2",
"eslint": "^8.19.0",
"flow-bin": "^0.218.0",
"prettier": "2.8.8",
"react-native": "0.73.6",
"typescript": "5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-masked-view/masked-view.git"
},
"bugs": {
"url": "https://github.com/react-native-masked-view/masked-view/issues"
},
"publishConfig": {
"access": "public"
},
"codegenConfig": {
"name": "RNMaskedViewSpec",
"type": "components",
"jsSrcsDir": "js",
"android": {
"javaPackageName": "org.reactnative.maskedview"
}
}
}