-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "editorjs-slideshow",
"version": "1.0.0",
"description": "Slideshow plugin for Editor.js, allows users to add multiple images in a grid and slideshow layout.",
"main": "src/bundle.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"lint": "eslint src/ --ext .js",
"lint:errors": "eslint src/ --ext .js --quiet",
"lint:fix": "eslint src/ --ext .js --fix"
},
"keywords": [
"editorjs",
"js",
"slideshow"
],
"author": "ranemihir",
"license": "ISC",
"repository": "https://github.com/editorjs-slideshow",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.2.0",
"babel-loader": "^8.0.5",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"style-loader": "^1.1.4",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}