This repository was archived by the owner on Nov 25, 2025. It is now read-only.
forked from callstack/masked-view
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.95 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.95 KB
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
{
"name": "@react-native-oh-tpl/masked-view",
"version": "0.2.9-0.2.2",
"description": "React Native MaskedView component",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "./types/index.d.ts",
"react-native": "js/index",
"harmony": {
"alias": "@react-native-masked-view/masked-view"
},
"files": [
"js",
"lib",
"types",
"harmony",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"keywords": [
"react-native",
"react native",
"masked-view",
"masked view",
"harmony"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-oh-library/masked-view.git"
},
"author": "Mike Nedosekin <crespo8800@gmail.com>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@react-native-masked-view/masked-view": "0.2.9 - 0.3.1"
},
"homepage": "https://github.com/react-native-masked-view/masked-view#readme",
"scripts": {
"prepare": "bob build",
"build": "bob build",
"test:flow": "flow check",
"test:js": "echo 0",
"test:lint": "eslint ./",
"test:typescript": "tsc -noEmit",
"test:prettier": "prettier --check './**/*.js'"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/react-native": "^0.69.2",
"eslint": "^7.20.0",
"flow-bin": "^0.218.0",
"prettier": "^2.2.1",
"react-native": "0.72.5",
"react-native-builder-bob": "^0.18.1",
"react-native-test-app": "^2.5.25",
"typescript": "4.8.4"
},
"bugs": {
"url": "https://github.com/react-native-masked-view/masked-view/issues"
},
"react-native-builder-bob": {
"source": "js",
"output": "lib",
"targets": [
[
"commonjs",
{
"flow": true
}
],
"module"
]
}
}