-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "react-native-spinner-screen-overlay",
"version": "1.0.2",
"description": "Screen overlay to block UI with a spinner.",
"main": "lib/index.js",
"files": [
"lib/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "node node_modules/eslint/bin/eslint.js src/**/*.js --fix",
"prettier": "prettier babel.config.js .eslintrc.js .prettierrc.js src/**/*.js --write",
"lint": "npm run prettier && npm run eslint",
"build": "npm run lint && node build.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aprilmintacpineda/react-native-spinner-screen-overlay.git"
},
"keywords": [
"react-native",
"screen-overlay",
"overlay",
"block-ui",
"block-screen"
],
"author": "April Mintac Pineda",
"license": "MIT",
"bugs": {
"url": "https://github.com/aprilmintacpineda/react-native-spinner-screen-overlay/issues"
},
"homepage": "https://github.com/aprilmintacpineda/react-native-spinner-screen-overlay#readme",
"dependencies": {
"react": "^16.8.6",
"react-native": "^0.59.8"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.8.2",
"eslint-plugin-react": "^7.13.0",
"prettier": "^1.17.0"
}
}