-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
66 lines (66 loc) · 2.05 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
{
"name": "react-scrollbar-js",
"version": "1.0.0",
"description": "The Simplest Scroll Area Component with custom scrollbar for React Js",
"main": "./dist/react-scrollbar.js",
"scripts": {
"prepublish": "npm run lint && npm run build && npm run getstyles",
"getstyles": "cp src/style_default.scss doc/examples && node-sass src/style_default.scss --output doc/examples",
"start": "webpack-dev-server --inline --hot --config webpack.dev.config.js",
"build": "webpack --config webpack.publish.config.js",
"compile": "babel src --out-dir out && node-sass src --output out",
"lint": "eslint src --ext .jsx,.js",
"lintfix": "eslint src --ext .jsx,.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BosNaufal/react-scrollbar.git"
},
"keywords": [
"react",
"web-components",
"react-component",
"component",
"react js",
"react scrollbar",
"scrollbar",
"slimscroll",
"custom scrollbar",
"react-scrollbar",
"perfect scrollbar",
"react slim scroll"
],
"author": "Naufal Rabbani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BosNaufal/react-scrollbar/issues"
},
"homepage": "https://github.com/BosNaufal/react-scrollbar#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.26.1",
"es6-promise": "^4.0.5",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"node-sass": "^4.3.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"react-dom": "^15.0.0||^14.0.0"
},
"peerDependencies": {
"react": "^15.0.0||^14.0.0"
}
}