-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "react-native-touch-outside",
"description": "Utility library to handle outside touches in React Native",
"version": "0.1.1",
"main": "lib/commonjs/index.js",
"license": "MIT",
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"author": {
"email": "fabian.meul@gmail.com",
"name": "Fabian Meul",
"url": "https://github.com/FabianMeul"
},
"scripts": {
"prepare": "bob build"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"peerDependencies": {
"ramda": "^0.27.1",
"react": "~16.13.1",
"react-native": "~0.63.4"
},
"devDependencies": {
"@testing-library/react-native": "^8.0.0",
"@types/ramda": "^0.27.45",
"@types/react": "~16.9.56",
"@types/react-native": "~0.63.50",
"react-native-builder-bob": "^0.18.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}