forked from garthenweb/react-viewport-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"name": "react-viewport-utils",
"version": "2.0.1",
"description": "Utility components for working with the viewport in react",
"main": "dist/commonjs.js",
"module": "dist/esmodule.js",
"types": "dist/types.d.ts",
"source": "lib/index.ts",
"sideEffects": false,
"scripts": {
"start": "parcel ./examples/index.html --dist-dir='examples-dist'",
"precompile": "rm -rf dist",
"compile": "parcel build",
"test": "jest",
"fmt": "prettier --write \"lib/*.{ts,tsx}\" \"examples/*.{ts,tsx}\"",
"prepublish": "npm run compile",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/garthenweb/react-viewport-utils"
},
"bugs": {
"url": "https://github.com/garthenweb/react-viewport-utils/issues"
},
"engines": {
"node": "^8.9.0 || >= 10.13.0"
},
"author": "Jannick Garthen <jannick.garthen@gmail.com>",
"keywords": [
"react",
"viewport",
"scroll",
"dimensions",
"size",
"resize",
"event",
"observer",
"window",
"screen"
],
"license": "MIT",
"devDependencies": {
"@parcel/config-default": "^2.0.0",
"@parcel/packager-ts": "^2.0.0",
"@parcel/transformer-typescript-types": "^2.0.0",
"@testing-library/react": "^12.1.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"concurrently": "^6.2.2",
"coveralls": "^3.1.1",
"jest": "^27.2.3",
"parcel": "^2.0.0",
"parcel-transformer-replace": "link:./bundler/parcel-transformer-replace",
"prettier": "^2.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"memoize-one": "^5.1.1 || ^6.0.0"
},
"peerDependencies": {
"react": "^16.3.0 || >= 17.0.0"
}
}