forked from laurenchen0631/react-owl-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "react-owl-carousel",
"version": "2.2.0",
"description": "React.js + Owl Carousel",
"main": "lib/OwlCarousel.js",
"scripts": {
"clean": "rimraf lib",
"build:uncompressed": "cross-env NODE_ENV=production webpack --config webpack.config.build.js",
"build:minified": "cross-env NODE_ENV=production webpack --config webpack.config.build.js --env.minimize",
"build": "npm run clean && npm run build:uncompressed && npm run build:minified ",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seal789ie/react-owl-carousel.git"
},
"keywords": [
"react",
"OwlCarousel",
"gallery"
],
"author": "xhriman",
"license": "ISC",
"bugs": {
"url": "https://github.com/seal789ie/react-owl-carousel/issues"
},
"homepage": "https://github.com/seal789ie/react-owl-carousel#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"copyfiles": "^1.2.0",
"cross-env": "^3.1.4",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.0.0",
"file-loader": "^0.11.1",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.6.0",
"style-loader": "^0.17.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"dependencies": {
"owl.carousel": "~2.2.0",
"prop-types": "^15.5.8"
}
}