-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.45 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.45 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-scroll-ondrag",
"version": "4.0.0",
"description": "React library for scrolling elements by dragging the mouse",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": "./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"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dotcore64/react-scroll-ondrag.git"
},
"keywords": [
"react",
"hooks",
"scroll",
"mouse",
"drag"
],
"author": "Julian Grinblat <julian@dotcore.co.il>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotcore64/react-scroll-ondrag/issues"
},
"homepage": "https://github.com/dotcore64/react-scroll-ondrag#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"babel-plugin-dev-expression": "^0.2.3",
"babel-plugin-istanbul": "^7.0.1",
"chai": "^6.2.2",
"dirty-chai": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^55.0.0",
"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": "^11.7.5",
"puppeteer": "^24.38.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup": "^4.59.0",
"sinon": "^21.0.2",
"sinon-chai": "^4.0.1",
"styled-components": "^6.3.11"
},
"dependencies": {
"tiny-invariant": "^1.3.3"
}
}