vCarousel/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2021-03-31 18:14:03 +02:00
{
"name": "vCarousel",
"version": "1.0.0",
2021-03-31 18:14:03 +02:00
"description": "Video carousel, a new video appears when the previous one finishes playing.",
"main": "./src/vCarousel.ts",
2021-03-31 18:14:03 +02:00
"scripts": {
"test": "karma start",
2021-03-31 18:14:03 +02:00
"build": "webpack",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "https://forge.chapril.org/Fab_Blab/vCarousel"
},
"keywords": [
"carousel",
"video"
],
"author": {
"name": "Fabrice PENHOËT",
"email": "fabrice@le-fab-lab.com",
"url": "https://www.le-fab-lab.com"
},
2021-03-31 18:14:03 +02:00
"license": "GPL-3.0-or-later",
"devDependencies": {
2021-10-04 11:10:15 +02:00
"@types/jasmine": "^3.9.1",
"@webpack-cli/serve": "^1.5.2",
2021-09-03 10:25:17 +02:00
"jasmine": "^3.9.0",
2021-07-05 12:18:09 +02:00
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
2021-07-05 12:18:09 +02:00
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
2021-09-03 10:25:17 +02:00
"karma-typescript": "^5.5.2",
2021-06-01 15:59:08 +02:00
"ts-loader": "^8.3.0",
2021-10-04 11:10:15 +02:00
"typescript": "^4.4.3",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0",
2021-10-04 11:10:15 +02:00
"webpack-dev-server": "^4.3.0"
},
"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
}