-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) Β· 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) Β· 1.86 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
63
64
65
66
67
{
"name": "react-easing-scroll",
"version": "1.1.0",
"private": false,
"description": "π React component that eliminates the need for jQuery easing, providing seamless and smooth scroll animations with over 30 Ease functions π for in-page navigation linksβ‘",
"main": "dist/useEasingScroll.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"wb_build": "webpack --config webpack.config.cjs --mode production",
"test": "jest",
"buildRollup": "rollup -c",
"startRollup": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "https://github.com/ArmaanLeg3nd/react-easing-scroll"
},
"keywords": [
"react",
"scroll",
"effects",
"easing",
"easing-effects",
"animation",
"component"
],
"author": "Armaan Batra",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArmaanLeg3nd/react-easing-scroll/issues"
},
"homepage": "https://github.com/ArmaanLeg3nd/react-easing-scroll#readme",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@rollup/plugin-alias": "^5.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/prop-types": "^15.7.9",
"@types/react": "^18.2.38",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"raf": "^3.4.1",
"rollup": "^4.1.4",
"rollup-plugin-typescript2": "^0.36.0",
"text-encoding": "^0.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"files": [
"dist"
]
}