-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "grapesjs-touch",
"version": "0.1.1",
"description": "GrapesJS touch support for mobile devices",
"main": "dist/grapesjs-touch.min.js",
"scripts": {
"lint": "eslint src",
"v:patch": "npm version --no-git-tag-version patch",
"build": "npm run v:patch && webpack --env.production",
"start": "webpack-dev-server --open --progress --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/artf/grapesjs-touch.git"
},
"keywords": [
"grapesjs",
"plugin",
"mobile",
"touch"
],
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4"
}
}