forked from xobotyi/react-scrollbars-custom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.43 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
{
"name": "react-scrollbars-custom",
"description": "The best React custom scrollbars component",
"version": "4.0.16",
"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": {
"prop-types": "^15.0.0",
"react": "^16.0.0"
},
"dependencies": {
"cnbuilder": "^1.1.7",
"react-draggable": "^3.3.0",
"zoom-level": "^1.2.4"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@types/jasmine": "^3.3.13",
"@types/karma": "^3.0.2",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.8.22",
"codacy-coverage": "^3.4.0",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"jasmine-core": "^3.3.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-typescript": "^4.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"prop-types": "^15.0.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-typescript2": "^0.19.3",
"simulant": "^0.2.2",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"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",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run format && npm run test && npm run build",
"push-codacy-coverage": "cat ./coverage/lcov.info | codacy-coverage"
},
"prettier": {
"printWidth": 120
}
}