forked from xobotyi/react-scrollbars-custom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.36 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.36 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
{
"name": "react-scrollbars-custom",
"description": "The best React custom scrollbars component",
"version": "4.0.27",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/xobotyi"
},
"repository": {
"type": "git",
"url": "https://github.com/xobotyi/react-scrollbars-custom.git"
},
"bugs": {
"url": "https://github.com/xobotyi/react-scrollbars-custom/issues"
},
"homepage": "https://github.com/xobotyi/react-scrollbars-custom",
"author": {
"name": "Anton Zinovyev",
"url": "https://github.com/xobotyi",
"email": "xog3@yandex.ru"
},
"license": "MIT",
"keywords": [
"customizable",
"scrollbars",
"scroll",
"scrollbar",
"react",
"component",
"custom"
],
"main": "dist/rsc.js",
"module": "dist/rsc.esm.js",
"esnext": "dist/rsc.next.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.0.0"
},
"dependencies": {
"cnbuilder": "^2.5.0",
"react-draggable": "^4.4.2",
"zoom-level": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@types/jasmine": "^3.5.10",
"@types/karma": "^5.0.0",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.35",
"codacy-coverage": "^3.4.0",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"jasmine-core": "^3.5.0",
"karma": "^5.0.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-jasmine": "^3.1.1",
"karma-typescript": "^5.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.10.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.27.1",
"simulant": "^0.2.2",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"scripts": {
"format": "prettier --write \"src/**/*.[tj]s?(x)\" \"tests/**/*.[tj]s?(x)\" \"*.[tj]s?(x)\"",
"devserver": "cd ./testbench && npm i && npm run devserver",
"build": "rimraf ./dist && rollup --config",
"test": "cross-env NODE_ENV=production karma start",
"preversion": "npm run format && npm run build",
"prepublishOnly": "npm run format && npm run test && npm run build",
"push-codacy-coverage": "cat ./coverage/lcov.info | codacy-coverage"
},
"prettier": {
"printWidth": 120
}
}