forked from rommguy/react-custom-scroll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
{
"name": "react-custom-scroll",
"version": "3.2.2",
"description": "An easily designable, cross browser (!!), custom scroll with ReactJS Animations and scroll rate **exactly** like native scroll",
"main": "index",
"scripts": {
"test": "karma start --single-run",
"sassex": "node-sass example/main.scss | postcss --use autoprefixer -b 'last 2 versions' > example/styles.css",
"lint": "eslint ./src && eslint ./example/firstComp",
"build": "npm run lint && npm run sassex && webpack",
"develop": "webpack --watch --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "[email protected]:rommguy/react-custom-scroll.git"
},
"author": "Guy Romm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rommguy/react-custom-scroll/issues"
},
"homepage": "https://github.com/rommguy/react-custom-scroll#readme",
"dependencies": {},
"devDependencies": {
"autoprefixer": "6.3.6",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"create-react-class": "^15.6.2",
"css-loader": "^0.28.11",
"eslint": "^3.6.11",
"eslint-plugin-lodash": "2.2.5",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "0.2.2",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "^3.0.0",
"lodash": "^4.17.10",
"node-sass": "4.7.2",
"postcss-cli": "2.5.1",
"prop-types": "15.5.8",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": "^2.12.0",
"webpack-cli": "^2.1.3"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"keywords": [
"react",
"react-custom-scroll",
"react-component",
"customscroll",
"custom-scroll",
"ui component",
"ui",
"component"
]
}