-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
37 lines (37 loc) · 1019 Bytes
/
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
{
"name": "grapesjs-plugin-export",
"version": "0.1.2",
"description": "Export GrapesJS templates to ZIP",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"test": "mocha --compilers js:babel-core/register --recursive ./test/*.js",
"test:dev": "mocha --compilers js:babel-core/register --recursive -R min -w ./test/*.js",
"build": "WEBPACK_ENV=prod && webpack",
"start": "WEBPACK_ENV=dev ./node_modules/.bin/webpack-dev-server --progress --colors"
},
"keywords": [
"grapesjs",
"template",
"export",
"zip"
],
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.2.2",
"grapesjs": "^0.3.2",
"mocha": "^3.0.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"file-saver": "^1.3.2",
"jszip": "^3.0.0"
}
}