-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "giffy-images",
"version": "1.1.11",
"description": "A JavaScript plugin to turn many images into a gif.",
"keywords": [
"gif",
"html",
"js",
"gif generator",
"images to gif",
"gamefy"
],
"scripts": {
"test": "npx jest",
"dev": "npx webpack serve --config ./.webpack/webpack.dev.js",
"build-examples": "npx webpack --config ./.webpack/webpack.examples.js && rm ./examples/giffy-images.min.js",
"build": "npx webpack --optimization-minimize --config ./.webpack/webpack.prod.js && npm run build-examples"
},
"author": "Leonardo Carey",
"license": "ISC",
"homepage": "https://leoncarey.github.io/giffy-images",
"repository": {
"type": "git",
"url": "https://github.com/leoncarey/giffy-images"
},
"dependencies": {
"webpack": "^5.46.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}