forked from xiaolin/react-image-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.99 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
{
"name": "@sector-labs/react-image-gallery",
"version": "1.0.0",
"description": "React carousel image gallery component with thumbnail and mobile support",
"main": "./build/image-gallery.js",
"scripts": {
"verify": "eslint --ext .js,.jsx src",
"build": "npm run build:js && npm run build:css",
"build:js": "mkdir -p build && babel src/ImageGallery.jsx --out-file build/image-gallery.js --plugins transform-object-assign --presets es2015,react,stage-0",
"build:css": "mkdir -p styles/css && sass styles/scss/image-gallery.scss styles/css/image-gallery.css && sass styles/scss/image-gallery-no-icon.scss styles/css/image-gallery-no-icon.css",
"lint": "eslint --ext .js,.jsx src"
},
"repository": {
"type": "git",
"url": "https://github.com/SectorLabs/react-image-gallery.git"
},
"keywords": [
"react",
"carousel",
"react-component",
"react-carousel",
"react-slideshow",
"react-gallery",
"react carousel",
"react slideshow",
"react gallery",
"image gallery",
"image slider",
"slideshow",
"gallery",
"slider"
],
"author": "Sector Labs <open-source@sectorlabs.ro> / Xiao Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/SectorLabs/react-image-gallery/issues"
},
"homepage": "https://github.com/SectorLabs/react-image-gallery",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^2.10.2",
"eslint-plugin-react": "^5.1.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"sass": "^1.0.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.5.8",
"@sector-labs/react-swipeable": "^5.0.0",
"resize-observer-polyfill": "^1.5.0"
}
}