-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 2.58 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
{
"name": "react-stay-scrolled",
"version": "9.0.0",
"description": "React component to keep content always scrolled down",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint --cache .",
"test": "karma start karma.conf.cjs --single-run --no-auto-watch",
"tdd": "karma start karma.conf.cjs",
"build": "babel src -s -d dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotcore64/react-stay-scrolled.git"
},
"files": [
"dist",
"types"
],
"keywords": [
"react-hooks",
"scroll"
],
"author": "Julian Grinblat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotcore64/react-stay-scrolled/issues"
},
"homepage": "https://github.com/dotcore64/react-stay-scrolled#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@react-spring/web": "^9.7.5",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"babel-plugin-dev-expression": "^0.2.3",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^5.1.2",
"dynamics.js": "^1.1.5",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^55.0.0",
"jquery": "^3.7.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.8",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "0.0.36",
"mocha": "^10.8.2",
"prop-types": "^15.8.1",
"puppeteer": "^23.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.24.3",
"sinon": "^19.0.2",
"velocity-animate": "^1.5.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"memoize-one": "^6.0.0",
"tiny-invariant": "^1.3.3"
}
}