forked from leaffm/react-infinite-carousel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.56 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.56 KB
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
{
"name": "@devgateway/react-infinite-carousel",
"repository": {
"type": "git",
"url": "https://github.com/devgateway/react-infinite-carousel.git"
},
"version": "2.0.3",
"description": "React simple infinite carousel with lazy loading and responsive support",
"scripts": {
"build": "WEBPACK_ENV=build webpack --mode production",
"start": "WEBPACK_ENV=dev webpack-dev-server --mode development",
"update:packages": "node wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save",
"semantic-release": "semantic-release --no-ci"
},
"keywords": [
"carousel",
"slider",
"infinite carousel",
"responsive carousel",
"react carousel",
"react slider",
"lazy loading"
],
"author": "Leaf Music",
"license": "MIT",
"main": "./lib/react-infinite-carusel.min.js",
"bugs": {
"url": "https://github.com/leaffm/react-infinite-carousel/issues"
},
"homepage": "https://github.com/leaffm/react-infinite-carousel#readme",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-es2015": "*",
"@babel/preset-react": "^7.7.4",
"@babel/preset-stage-0": "*",
"@semantic-release/npm": "^5.3.4",
"babel-eslint": "*",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "*",
"css-loader": "^3.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "*",
"eslint-config-airbnb-base": "*",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "*",
"eslint-loader": "*",
"eslint-plugin-flowtype": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"extract-text-webpack-plugin": "*",
"gm-base64": "*",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"semantic-release": "^15.13.31",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-responsive-mixin": "^0.4.0",
"uniqid": "^5.2.0"
},
"npmName": "react-infinite-carousel",
"npmFileMap": [
{
"basePath": "/lib/",
"files": [
"*.js"
]
}
],
"publishConfig": {
"publishConfig": {
"@devgateway:registry": "https://npm.pkg.github.com"
},
"tag": "latest"
}
}