{ "name": "grapesjs", "description": "Free and Open Source Web Builder Framework", "version": "0.16.44", "author": "Artur Arseniev", "license": "BSD-3-Clause", "homepage": "http://grapesjs.com", "main": "dist/grapes.min.js", "sideEffects": [ "*.vue", "*.css", "*.scss" ], "repository": { "type": "git", "url": "https://github.com/artf/grapesjs.git" }, "dependencies": { "backbone": "1.3.3", "backbone-undo": "^0.2.5", "cash-dom": "^2.3.9", "codemirror": "^5.58.2", "codemirror-formatting": "^1.0.0", "keymaster": "^1.6.2", "promise-polyfill": "^8.1.3", "spectrum-colorpicker": "^1.8.0", "underscore": "^1.9.1" }, "devDependencies": { "@babel/cli": "^7.12.10", "@vuepress/plugin-google-analytics": "^1.7.1", "documentation": "^8.1.2", "eslint": "^6.6.0", "grapesjs-cli": "^1.0.14", "husky": "^2.7.0", "jest": "^24.9.0", "lint-staged": "^8.2.1", "npm-run-all": "^4.1.5", "prettier": "^1.18.2", "sass": "^1.29.0", "sinon": "^7.5.0", "string-replace-loader": "^2.2.0", "vuepress": "^1.7.1", "whatwg-fetch": "^3.5.0" }, "keywords": [ "grapes", "grapesjs", "wysiwyg", "web", "template", "editor", "newsletter", "site", "builder" ], "babel": { "presets": [ [ "@babel/preset-env", { "targets": [ "> 1%", "ie 11", "safari 8" ] } ] ], "plugins": [ "@babel/plugin-transform-runtime" ], "env": { "test": { "presets": [ "@babel/preset-env" ] } } }, "lint-staged": { "{src,test}/**/*.js": [ "prettier --single-quote --write", "git add" ] }, "jest": { "testURL": "http://localhost/", "modulePaths": [ "./src" ], "testMatch": [ "/test/specs/**/*.js" ], "setupFiles": [ "/test/setup.js" ], "moduleNameMapper": { "^jquery$": "cash-dom" } }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "scripts": { "docs": "vuepress dev docs", "docs:api": "node docs/api.js", "docs:build-vp": "vuepress build docs", "docs:build": "npm run docs:api && npm run docs:build-vp", "docs:deploy": "docs/deploy.sh", "lint": "eslint src", "check": "npm run lint && npm run test", "build": "npm run check && run-s build:*", "build:js": "grapesjs-cli build --targets=\"> 1%, ie 11, safari 8, not dead\" --statsOutput=\"stats.json\"", "build:css": "sass src/styles/scss/main.scss dist/css/grapes.min.css --no-source-map --style=compressed --load-path=node_modules", "build:locale": "rm -rf ./locale && node scripts/build-locale.js && babel locale -d locale --copy-files --no-comments", "start": "run-p start:*", "start:js": "grapesjs-cli serve", "start:css": "npm run build:css -- --watch", "format": "prettier --single-quote --write './{src,test}/**/*.js'", "test": "jest", "test:dev": "jest --watch" } }