-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "react-scrollbars",
"version": "0.0.5",
"description": "Stateful scrollbar component for React",
"keywords": [
"react-component",
"scrollbars"
],
"scripts": {
"start": "cd examples && webpack-dev-server --port 9090 --d --hot --inline --progress --colors",
"build": "./node_modules/jsx-loader/node_modules/.bin/jsx --harmony --no-cache-dir -x jsx src lib",
"build-www": "cd examples && webpack"
},
"main": "lib/index.js",
"author": "James Coleman",
"license": "ISC",
"bugs": {
"url": "https://github.com/ojame/react-scrollbars/issues"
},
"homepage": "https://github.com/ojame/react-scrollbars",
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"css-loader": "^0.17.0",
"html-loader": "^0.3.0",
"jsx-loader": ">=0.12.2",
"markdown-loader": "^0.1.2",
"normalize.css": "^3.0.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.5",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0",
"react-hot-loader": "^1.1.1"
},
"peerDependencies": {
"react": ">=0.12.2"
},
"dependencies": {
"lodash": "^3.10.1"
}
}