This repository was archived by the owner on Jul 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.79 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.79 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
89
90
91
92
{
"name": "customizable-scrollbars",
"version": "1.0.1",
"description": "React scrollbars component",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-custom-scrollbars.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-custom-scrollbars.min.js",
"lint": "eslint src test examples",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --auto-watch --no-single-run",
"test:cov": "cross-env NODE_ENV=test COVERAGE=true karma start --single-run",
"prepublish": "npm run lint && npm run clean && npm run build && npm run build:umd && npm run build:umd:min && node ./prepublish"
},
"repository": {
"type": "git",
"url": "https://github.com/GetHypercube/customizable-scrollbars"
},
"keywords": [
"scroll",
"scrollbars",
"react-component",
"react",
"custom"
],
"contributors": [
{
"name": "Samuel Vazquez",
"url": "https://github.com/CodeXMakerCompany"
},
{
"name": "Fredy Osorio",
"url": "https://github.com/fredyosorio"
},
{
"name": "Luis Cosio",
"url": "https://github.com/luiscosio"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GetHypercube/customizable-scrollbars/issues"
},
"homepage": "https://github.com/GetHypercube/customizable-scrollbars",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^8.2.5",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"cross-env": "^7.0.3",
"es3ify": "^0.2.2",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"expect": "^28.1.1",
"glob": "^8.0.3",
"isparta-loader": "^2.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"simulant": "^0.2.2",
"webpack": "^5.73.0",
"webpack-dev-server": "^4.9.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"dom-css": "^2.1.0",
"prop-types": "^15.8.1",
"raf": "^3.4.1"
}
}