-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (100 loc) · 3.06 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
{
"name": "react-scrollsense",
"version": "1.0.4-alpha.7",
"description": "A lightweight scroll sensor to solve your react scroll into viewport issues. ",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./io": "./dist/io/index.js",
"./helpers": "./dist/helpers/index.js"
},
"scripts": {
"test-jest": "jest",
"test-e2e": "wdio run ./wdio.conf.js",
"build": "rollup --config rollup.config.js",
"build-ts": "tsc",
"build-dev": "rollup --config rollup.dev.js",
"wdio": "wdio run wdio.conf.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/XPD-Kasun/React-ScrollSense.git"
},
"keywords": [
"React",
"Scroll",
"Scrolling",
"Sensor",
"Intersection Observer",
"IntersectionObserver",
"Viewport",
"on scroll",
"onscroll"
],
"author": "XPD Kasun Jayawardena <kasunx.kelaniya@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/XPD-Kasun/React-ScrollSense/issues"
},
"homepage": "https://xpd-kasun.github.io/React-ScrollSense/",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@wdio/cli": "^7.16.15",
"@wdio/jasmine-framework": "^7.16.14",
"@wdio/local-runner": "^7.16.15",
"@wdio/spec-reporter": "^7.16.14",
"chromedriver": "^102.0.0",
"cross-env": "^7.0.2",
"cssnano": "^5.0.17",
"cypress": "^9.4.1",
"f": "^1.4.0",
"jest": "^27.5.0",
"prop-types": "^15.8.1",
"react": "^17",
"react-dom": "^17.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.8.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.26.5",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"wdio-chromedriver-service": "^7.2.6"
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"browserslist": "since 2015",
"types": "dist/index.d.ts",
"typesVersions": {
">=3.1": {
"io": ["dist/io/index.d.ts"],
"helpers": ["dist/helpers/index.d.ts"]
}
}
}