forked from ladjs/react-native-loading-spinner-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
149 lines (149 loc) · 3.51 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "react-native-loading-spinner-overlay",
"description": "The only pure React Native Native iOS and Android loading spinner (progress bar indicator) overlay",
"version": "3.0.0",
"author": "Nick Baugh <[email protected]>",
"main": "lib/index.js",
"types": "lib",
"bugs": {
"url": "https://github.com/joinspontaneous/react-native-loading-spinner-overlay/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"build": "npm run test && tsc -p .",
"lint": "xo && remark . -qfo",
"test": "npm run lint"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com)",
"Rohit Bhatia <[email protected]> (http://blendtale.com)",
"Spencer Snyder <[email protected]> (http://spencersnyder.io)",
"Luciano Lima <[email protected]>",
"George Savvidis",
"Sandro Machado <[email protected]>",
"Ben Sutter <[email protected]>",
"Ivan Kuznetsov <[email protected]>",
"Darren Camp <[email protected]>",
"Rigo B Castro <[email protected]>",
"Raj Kissu",
"Ivan Pusic <[email protected]>",
"Antonio Grass <[email protected]>",
"Vijay Chouhan <[email protected]>",
"Jacob Lee <[email protected]>",
"Matt Labrum"
],
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/react-native": "^0.63.50",
"@typescript-eslint/parser": "^4.15.2",
"babel-eslint": "^10.0.1",
"eslint": "4",
"eslint-config-xo-lass": "^1.0.3",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.4.0",
"fixpack": "^2.3.1",
"@types/jest": "^28.1.6",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "16.6.0-alpha.8af6728",
"react-native": "^0.57.3",
"remark-cli": "^5.0.0",
"remark-preset-github": "^0.0.9",
"typescript": "^4.2.2",
"xo": "^0.23.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"homepage": "https://github.com/joinspontaneous/react-native-loading-spinner-overlay",
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"activity",
"android",
"bar",
"full",
"indicator",
"ios",
"loading",
"modal",
"native",
"pop-up",
"popup",
"progress",
"react",
"react-native",
"screen",
"spinner",
"view"
],
"license": "MIT",
"lint-staged": {
"linters": {
"*.ts": [
"xo --fix",
"git add"
],
"*.md": [
"remark . -qfo",
"git add"
],
"package.json": [
"fixpack",
"git add"
]
}
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/joinspontaneous/react-native-loading-spinner-overlay.git"
},
"xo": {
"parser": "typescript-eslint",
"prettier": true,
"space": true,
"extends": [
"xo-lass",
"plugin:react/recommended",
"plugin:react-native/all"
],
"plugins": [
"react",
"react-native"
],
"parserOptions": {
"sourceType": "module"
},
"ignores": [
"config.js",
"example/**",
"lib"
],
"settings": {
"react": {
"version": "16.x"
}
}
}
}