-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.23 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.23 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
84
85
86
87
88
89
90
91
{
"name": "@nithinpp69/react-native-animated-button",
"version": "2.1.0",
"description": "React Native animated button",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"files": [
"src",
"lib"
],
"author": "Nithin P P <nithinpp69@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nithinpp69/react-native-animated-button.git",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --color --ext .js --fix src/",
"typescript": "tsc --skipLibCheck --noEmit",
"build": "bob build",
"prepare": "yarn build"
},
"repository": {
"name": "GitHub",
"type": "git",
"url": "git+https://github.com/nithinpp69/react-native-animated-button.git"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0",
"react-native-reanimated": ">=2.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/runtime": "^7.11.2",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react-native": "^0.64.13",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^7.0.1",
"metro-react-native-babel-preset": "^0.63.0",
"react": "16.11.0",
"react-dom": "^17.0.1",
"react-native": "0.62.3",
"react-native-builder-bob": "^0.18.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.2.3",
"typescript": "^4.4.2"
},
"resolutions": {
"@types/react": "^17"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"keywords": [
"react-native",
"react",
"native",
"animated",
"button",
"ui",
"animated-button",
"reanimated",
"mobile",
"android",
"ios"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}