forked from sag1v/react-elastic-carousel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
139 lines (139 loc) · 4.32 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@itseasy21/react-elastic-carousel",
"version": "0.12.3",
"description": "A flexible and responsive carousel component for react",
"author": "itseasy21",
"contributors": [
{
"name": "sag1v (Sagiv Ben Giat)"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itseasy21/react-elastic-carousel.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "./dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "concurrently -r -k -s all \"docz dev\" \"yarn run lint:watch\"",
"demo": "concurrently -r -k -s all \"rollup --config rollup.config.demo.js --watch\" \"yarn run lint:watch\"",
"lint:fix": "eslint src/* --fix",
"lint:watch": "esw --watch --fix src/*",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"prebuild": "yarn run lint:fix",
"build": "yarn run prebuild && rollup -c",
"build-doc": "docz build",
"deploy-doc": "gh-pages -d demo"
},
"lint-staged": {
"*.js": "eslint src/. --fix"
},
"dependencies": {
"@uiw/react-only-when": "^1.0.6",
"classnames": "^2.2.6",
"prop-types": "^15.5.4",
"react-swipeable": "^7.0.0",
"resize-observer-polyfill": "~1.5.0"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "16.8.3 - 18",
"react-dom": "16.8.3 - 18",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.18.6",
"@rollup/plugin-replace": "^2.3.4",
"babel-eslint": "^9.0.0",
"concurrently": "^4.1.0",
"cross-env": "^5.1.4",
"docz": "^2.3.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "5.12.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-watch": "^4.0.2",
"gatsby-plugin-google-analytics": "^2.1.34",
"gh-pages": "^2.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "1.14.2",
"prettier-eslint": "^8.8.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^2.1.8",
"react-test-renderer": "^16.5.2",
"rollup": "^0.64.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-url": "^1.4.0",
"styled-components": "^5.1.0"
},
"files": [
"dist"
],
"keywords": [
"itseasy21",
"react",
"react-carousel",
"carousel",
"responsive",
"reactjs",
"carrousel",
"slides",
"flexibale",
"rtl",
"right-to-left",
"resize",
"touch"
],
"resolutions": {
"ansi-styles": "^3.2.0"
}
}