-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "react-use-loading-overlay",
"version": "0.2.2",
"description": "A simple, lightweight react hook for displaying a loading overlay",
"main": "./dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "cross-env node_modules/.bin/jest --verbose",
"clear-dist": "cross-env rm -rf dist/",
"compile": "cross-env node_modules/.bin/tsc -p . && cp src/styles.css dist/",
"push": "cross-env npm run test && npm run clear-dist && npm run compile && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robtaussig/react-use-loading-overlay.git"
},
"dependencies": {},
"types": "./dist/index.d.ts",
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/dom-screen-wake-lock": "^1.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.5.0",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"jest": "^27.5.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react": "17.0.2",
"source-map-loader": "^3.0.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"keywords": [
"react",
"react-hooks",
"loading",
"overlay"
],
"author": "Robert Taussig <[email protected]> (robtaussig.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/robtaussig/react-react-use-loading-overlay/issues"
},
"homepage": "https://github.com/robtaussig/react-react-use-loading-overlay#readme"
}