-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
118 lines (118 loc) · 3.23 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-native-spinner-button",
"version": "1.4.3",
"description": "React Native Spinner Button component library",
"author": "Simform Solutions",
"main": "lib/index",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "husky install && yarn build",
"clean": "rm -rf node_modules",
"build": "rm -rf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' -c .eslintrc --fix ",
"build:local": "yarn build && yarn pack",
"test": "jest",
"example": "yarn --cwd example",
"coverage": "yarn test -u --coverage --watchAll --collectCoverageFrom='src/components/**/*.{ts,tsx}'"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-svg": "*",
"react-native-gradients": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simformsolutions/react-native-spinner-button.git"
},
"keywords": [
"react-native-spinner-button",
"react-native-spinner",
"react-native-button",
"react-native button with spinner",
"react-native button with loader",
"react-native button with activityindicator",
"react-native-loader",
"spinner",
"button",
"loader"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/simformsolutions/react-native-spinner-button/issues"
},
"homepage": "https://github.com/simformsolutions/react-native-spinner-button#readme",
"dependencies": {
"react-native-animatable": "^1.3.3",
"react-native-gradients": "^2.1.1",
"react-native-indicators": "^0.17.0",
"react-native-svg": "^14.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/react-native": "^12.4.3",
"@tsconfig/react-native": "^3.0.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/react-native": "^0.73.0",
"@types/react-native-indicators": "^0.16.1",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.3",
"jest": "^25.1.0",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native": "^0.73.4",
"react-test-renderer": "16.13.1",
"typescript": "4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn build && yarn test"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint"
]
},
"resolutions": {
"@types/react": "*"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [],
"modulePathIgnorePatterns": []
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}