forked from onderonur/react-intersection-observer-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-intersection-observer-hook",
"version": "2.0.3",
"license": "MIT",
"author": "onderonur",
"main": "dist/index.js",
"module": "dist/react-intersection-observer-hook.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"react-hooks",
"intersection-observer",
"on-screen",
"visibility"
],
"homepage": "https://onderonur.github.io/react-intersection-observer-hook",
"bugs": {
"url": "https://github.com/onderonur/react-intersection-observer-hook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/onderonur/react-intersection-observer-hook.git"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"clean": "rimraf dist .rts2_cache_esm .rts2_cache_cjs example/.cache example/dist",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
}
}