-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
99 lines (99 loc) · 2.63 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
93
94
95
96
97
98
99
{
"name": "react-scrollbars-custom",
"description": "The best React custom scrollbars component",
"version": "4.1.1",
"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": "[email protected]"
},
"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": "^3.1.0",
"react-draggable": "^4.4.5",
"zoom-level": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
"@react-hookz/eslint-config": "^1.7.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@types/jasmine": "^4.0.3",
"@types/karma": "^6.3.3",
"@types/react": "^17",
"@types/react-dom": "^17",
"cross-env": "^7.0.3",
"jasmine-core": "^5.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^17",
"react-dom": "^17",
"rimraf": "^5.0.0",
"rollup": "^2.77.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.35.0",
"semantic-release": "^19.0.3",
"simulant": "^0.2.2",
"tslib": "^2.4.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx}": "eslint --fix"
},
"scripts": {
"lint": "eslint ./ --ext ts,js,tsx,jsx,md,mdx",
"lint:fix": "yarn lint --fix",
"devserver": "cd ./testbench && npm i && npm run devserver",
"build": "rimraf ./dist && rollup --config",
"test": "cross-env NODE_ENV=production karma start"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}