-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "react-native-flip",
"version": "0.2.2",
"author": "Luke Czyszczonik",
"repository": {
"type": "git",
"url": "git+https://github.com/productbrew/react-native-reanimated-flip"
},
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"source": "src/index",
"types": "lib/typescript/index.d.ts",
"keywords": [
"react-native",
"flip",
"reanimated",
"gesture",
"handler",
"flip-card",
"card-flip"
],
"scripts": {
"test": "echo shrug && exit 1",
"prepare": "bob build",
"release": "release-it",
"typescript": "tsc --noEmit"
},
"devDependencies": {
"@babel/runtime": "^7.15.4",
"@commitlint/config-conventional": "^8.2.0",
"@react-native-community/bob": "^0.7.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/react": "^16.8.14",
"@types/react-native": "^0.57.50",
"react-native-gesture-handler": "^1.5.2",
"react-native-reanimated": "^2.2.0",
"release-it": "^12.4.3",
"typescript": "3.7.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}