-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.61 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
{
"name": "react-native-transition-view",
"version": "2.5.0",
"description": "Make Animated and Transitioned views using simplified components",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.js",
"files": [
"lib/",
"src/"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"branches": [
"master",
"main"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs"
],
"module"
]
},
"scripts": {
"prepare": "bob build"
},
"dependencies": {
"react-native-reanimated": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"husky": "^7.0.4",
"react-native-builder-bob": "^0.18.2",
"semantic-release": "^19.0.2"
},
"peerDependencies": {
"react-native": "*"
},
"repository": "https://github.com/divinenaman/react-native-transition",
"author": "Naman Agarwal <namanddev7@gmail.com> (https://github.com/divinenaman)",
"contributors": [
"Naman Agarwal <namanddev7@gmail.com> (https://github.com/divinenaman)"
],
"keywords": [
"react-native",
"transition",
"navigation",
"animation",
"reanimated",
"fade",
"slide",
"layers",
"parallax"
]
}