This repository was archived by the owner on Mar 25, 2026. It is now read-only.
forked from leandrowd/react-responsive-carousel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 4.38 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
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
{
"name": "react-responsive-carousel-vfix",
"version": "4.0.12",
"description": "React Responsive Carousel",
"author": "Leandro Augusto Lemos (http://leandrowd.github.io/)",
"main": "lib/js/index.js",
"types": "lib/ts/index.d.ts",
"license": "MIT",
"homepage": "http://leandrowd.github.io/react-responsive-carousel/",
"scripts": {
"start": "parcel src/index.html src/__tests__/jsdom/assets/**/*",
"changelog": "auto-changelog --ignore-commit-pattern=\"(Merge pull request|Merge branch|Updating changelog|Prepare for publishing)\" --breaking-pattern \"BREAKING CHANGE:\"",
"format": "prettier \"**/*.{js,ts,tsx,json}\"",
"format:check": "npm run format --check",
"format:write": "npm run format --write",
"test": "npm run format:check && npm run typecheck && npm run jest-dom && npm run jest-node",
"jest-dom": "jest --testEnvironment=jsdom src/__tests__/jsdom",
"jest-node": "jest --testEnvironment=node src/__tests__/SSR.tsx src/__tests__/animations.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"update-snapshots": "jest --updateSnapshot",
"build": "npm run lib:build",
"lib:build": "npm run lib:build-js && npm run lib:build-styles && npm run lib:build-types",
"lib:build-js": "babel ./src -d lib/js --ignore './src/__tests__' --extensions .ts,.tsx",
"lib:build-styles": "mkdirp lib/styles && sass src/carousel.scss > lib/styles/carousel.css && sass --style compressed src/carousel.scss > lib/styles/carousel.min.css",
"lib:build-types": "tsc -p tsconfig.types.json",
"lib:pre-publish": "npm version patch && git push origin master",
"lib:publish": "npm publish && git push --tags",
"lib:post-publish": "npm run changelog && git add . && git commit -m 'Updating changelog and codesandbox' && git push origin master",
"lib:build-and-publish": "npm run lib:build && npm run lib:pre-publish && npm run lib:publish && npm run lib:post-publish",
"prepublish-to-npm": "git pull && npm run build",
"publish-to-npm": "npm version patch && npm publish && git push --tags",
"postpublish-to-npm": "npm run changelog && git add . && git commit -m 'Updating changelog and codesandbox' && git push origin master",
"prepublish-prerelease-to-npm": "git pull && npm run build && git add . && git commit -m 'Prepare for publishing prerelease'",
"publish-prerelease-to-npm": "(git pull && npm version prerelease --preid=next && npm publish)"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@parcel/transformer-sass": "^2.12.0",
"@types/classnames": "^2.2.10",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"auto-changelog": "^2.4.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"enzyme": "^3.11.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mkdirp": "^3.0.1",
"parcel": "^2.0.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-player": "^2.16.0",
"react-test-renderer": "^18.3.1",
"sass": "^1.49.9",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"react-easy-swipe": "^0.0.23"
},
"overrides": {
"enzyme": {
"cheerio": "1.0.0-rc.3"
}
},
"babel": {
"presets": [
[
"@babel/env",
{
"modules": "commonjs",
"targets": [
"last 2 versions",
"not dead"
]
}
],
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilGale92/react-responsive-carousel-vscroll.git"
},
"bugs": {
"url": "https://github.com/PhilGale92/react-responsive-carousel-vscroll/issues"
}
}