-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
42
43
44
45
46
47
48
49
{
"name": "grapesjs-plugin-export",
"version": "1.0.5",
"description": "Export GrapesJS templates to ZIP",
"main": "dist/grapesjs-plugin-export.min.js",
"scripts": {
"lint": "eslint src",
"build": "npm run v:patch && webpack --env.production",
"v:patch": "npm version --no-git-tag-version patch",
"start": "webpack-dev-server --open --progress --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/artf/grapesjs-plugin-export.git"
},
"keywords": [
"grapesjs",
"template",
"export",
"zip"
],
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread",
"transform-runtime"
]
},
"dependencies": {
"file-saver": "^1.3.8",
"jszip": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.5.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.18.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}