forked from leandrowd/react-responsive-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.4 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
{
"name": "react-responsive-carousel",
"version": "3.1.49",
"description": "React Responsive Carousel",
"author": {
"name": "Leandro Augusto Lemos",
"url": "http://leandrowd.github.io/"
},
"main": "./lib/index.js",
"license": "MIT",
"keywords": [
"react",
"carousel",
"gallery",
"image-gallery",
"slider",
"responsive",
"swipe",
"mobile-friendly",
"react-component",
"view"
],
"engines": {
"node": ">=4"
},
"types": "./index.d.ts",
"scripts": {
"start": "node --harmony ./node_modules/gulp/bin/gulp",
"test": "jest",
"update-snapshots": "jest --updateSnapshot",
"prebuild": "npm test",
"build": "babel ./src -d lib --ignore '__tests__' && gulp styles:package copy:package",
"prepublish-to-npm": "git pull && npm run build && git add . && git commit -m 'Prepare for publishing'",
"publish-to-npm": "(git pull origin master && npm version patch && git push origin master && npm publish && git push --tags)",
"postpublish-to-npm": "npm run changelog && git add . && git commit -m 'Updating changelog' && git push origin master",
"prepublish-to-gh-pages": "node --harmony ./node_modules/gulp/bin/gulp prepublish && npm run build-storybook",
"publish-to-gh-pages": "node --harmony ./node_modules/gulp/bin/gulp publish",
"storybook": "start-storybook -p 9001 -s ./src -c .storybook",
"build-storybook": "build-storybook -s ./src -o ./dist/storybook",
"changelog": "auto-changelog --ignore-commit-pattern=\"(Merge pull request|Merge branch|Updating changelog|Prepare for publishing)\""
},
"repository": {
"type": "git",
"url": "https://github.com/leandrowd/react-responsive-carousel.git"
},
"bugs": {
"url": "https://github.com/leandrowd/react-responsive-carousel/issues"
},
"homepage": "http://leandrowd.github.io/react-responsive-carousel/",
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.4.0",
"@kadira/storybook": "^2.35.3",
"auto-changelog": "^1.10.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"connect-modrewrite": "^0.9.0",
"css-loader": "^0.28.0",
"enzyme": "^2.8.2",
"gh-pages": "^0.11.0",
"gulp": "^3.8.9",
"gulp-clean-css": "^2.0.12",
"gulp-concat": "^2.3.4",
"gulp-connect": "^5.0.0",
"gulp-copy": "0.0.2",
"gulp-if": "^2.0.1",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.2.0",
"gulp-shell": "^0.2.10",
"gulp-streamify": "1.0.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.0",
"jest-cli": "^19.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.11.1"
},
"jest": {
"unmockedModulePathPatterns": [
"node_modules"
],
"rootDir": "src"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": true
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"react-easy-swipe": "^0.0.16"
}
}