vCarousel/package.json

35 lines
898 B
JSON
Raw Normal View History

2021-03-31 18:14:03 +02:00
{
"name": "vCarousel",
2021-04-29 17:40:20 +02:00
"version": "0.3.0",
2021-03-31 18:14:03 +02:00
"description": "Video carousel, a new video appears when the previous one finishes playing.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "https://forge.chapril.org/Fab_Blab/vCarousel"
},
"keywords": [
"carousel",
"video"
],
"author": "Fabrice PENHOËT",
"license": "GPL-3.0-or-later",
"devDependencies": {
2021-04-30 17:25:40 +02:00
"ts-loader": "^8.2.0",
"typescript": "^4.2.4",
2021-03-31 18:14:03 +02:00
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"flickity": "^2.2.2"
},
"dependenciesComments": {
2021-04-29 17:40:20 +02:00
"flickity": "This dependency can be removed (as well as this comment!), if you don't use Flickity in your application"
2021-03-31 18:14:03 +02:00
}
2021-04-29 10:32:33 +02:00
}