-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.63 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@grean/react-native-fade",
"version": "0.0.3",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"source": "src/index",
"files": [
"lib"
],
"keywords": [
"fade",
"reanimated",
"react-native"
],
"scripts": {
"watch": "nodemon -e js,ts,tsx --watch src --exec yarn prepare",
"release": "release-it",
"prepare": "bob build"
},
"repository": {
"type": "git",
"url": "https://github.com/grean/react-native-fade.git"
},
"peerDependencies": {
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.13.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"babel-plugin-groundskeeper-willie": "^1.3.2",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-builder-bob": "^0.18.1",
"react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.1.0",
"release-it": "*",
"typescript": "4.2.4"
},
"release-it": {
"github": {
"release": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"babelrc": true
}
],
[
"module",
{
"babelrc": true
}
],
"typescript"
]
},
"license": "MIT"
}