forked from sakhnyuk/rc-scrollbars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.59 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
{
"name": "rc-scrollbars",
"version": "1.1.2",
"description": "React scrollbars component",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"dev:lib": "tsc -w",
"dev:docs": "dumi dev",
"dev": "concurrently -k -p \"[{name}]\" -n \"LIB,DOCS\" -c \"bgMagenta.bold,bgGreen.bold\" \"npm run dev:lib\" \"npm run dev:docs\"",
"build:lib": "tsc",
"build:docs": "dumi build",
"lint": "eslint src test",
"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:lib"
},
"repository": {
"type": "git",
"url": "https://github.com/sakhnyuk/rc-scrollbars.git",
"branch": "main"
},
"keywords": [
"scroll",
"scroller",
"scrollbars",
"react-component",
"react",
"custom",
"rc-scrollbars"
],
"author": "Mikhail Sakhniuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/sakhnyuk/rc-scrollbars/issues"
},
"homepage": "https://github.com/sakhnyuk/rc-scrollbars",
"devDependencies": {
"@types/raf": "^3.4.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"dumi": "^1.1.4",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"expect": "^26.6.2",
"fork-ts-checker-webpack-plugin": "^6.0.6",
"glob": "^7.1.6",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rebound": "^0.1.0",
"rimraf": "^3.0.2",
"simulant": "^0.2.2",
"typescript": "^4.1.3"
},
"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",
"raf": "^3.4.1"
}
}