- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
{
|
|
|
|
"name": "svgedit",
|
2021-08-01 21:46:08 +00:00
|
|
|
"version": "7.0.0-beta.2",
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
"description": "Powerful SVG-Editor for your browser ",
|
2021-08-01 21:46:08 +00:00
|
|
|
"main": "dist/Editor.js",
|
|
|
|
"module": "dist/Editor.js",
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
"directories": {
|
|
|
|
"doc": "docs",
|
|
|
|
"example": "examples",
|
|
|
|
"test": "test"
|
|
|
|
},
|
2018-11-07 06:51:50 +00:00
|
|
|
"engines": {
|
2020-07-26 18:11:18 +00:00
|
|
|
"node": ">=10"
|
2018-11-07 06:51:50 +00:00
|
|
|
},
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
"scripts": {
|
2020-08-28 22:07:07 +00:00
|
|
|
"lint": "eslint --ext js,html,md .",
|
2021-05-09 17:29:45 +00:00
|
|
|
"test": "run-s cypress:instrument cypress:test",
|
2020-08-28 22:07:07 +00:00
|
|
|
"build": "rollup -c",
|
2020-09-02 11:59:47 +00:00
|
|
|
"build:watch": "rollup -c --watch",
|
2021-05-27 10:48:56 +00:00
|
|
|
"start": "web-dev-server --app-index src/editor/index.html --open --node-resolve",
|
2021-07-25 19:21:54 +00:00
|
|
|
"start:test": "web-dev-server --app-index src/editor/index.html --node-resolve",
|
2021-05-27 10:48:56 +00:00
|
|
|
"start:watch": "web-dev-server --app-index src/editor/index.html --open --node-resolve --watch",
|
2020-09-08 23:35:47 +00:00
|
|
|
"cypress:open": "run-p start cypress:open-no-start",
|
|
|
|
"cypress:open-no-start": "cypress open",
|
2021-07-25 20:13:06 +00:00
|
|
|
"cypress:run": "rimraf \".nyc_output/*\" && cypress run -q && nyc report --reporter=text-summary",
|
2021-07-25 19:33:06 +00:00
|
|
|
"cypress:instrument": "rimraf instrumented && cp-cli src instrumented && nyc instrument --compact=false src instrumented",
|
|
|
|
"cypress:test": "start-server-and-test start:test http://localhost:8000/instrumented/editor/index.html cypress:run",
|
2020-02-20 04:31:06 +00:00
|
|
|
"start-allow-origin": "static -p 8001 -H '{\"Access-Control-Allow-Origin\": \"*\"}'",
|
|
|
|
"start-embedded": "run-p start start-allow-origin",
|
|
|
|
"open-docs-no-start": "open-cli http://localhost:8000/docs/jsdoc/",
|
|
|
|
"open-docs": "run-p start open-docs-no-start",
|
2019-12-26 23:32:39 +00:00
|
|
|
"build-docs-remove": "rimraf \"docs/jsdoc/*\"",
|
2020-08-22 12:43:02 +00:00
|
|
|
"build-docs-create": "jsdoc --pedantic -c docs/jsdoc-config.js src",
|
2019-12-24 02:42:30 +00:00
|
|
|
"build-docs": "run-s -c build-docs-remove build-docs-create",
|
2020-02-20 04:31:06 +00:00
|
|
|
"build-and-open-docs-no-start": "run-s build-docs open-docs-no-start",
|
|
|
|
"build-and-open-docs": "run-s build-docs open-docs",
|
2020-07-18 11:21:41 +00:00
|
|
|
"compress-images": "imageoptim \"src/editor/extensions/*.png\" \"src/editor/spinbtn/*.png\" \"src/editor/jgraduate/images/*.{png,gif}\" \"src/editor/images/*.png\"",
|
2018-10-19 07:19:18 +00:00
|
|
|
"remark": "remark -q -f .",
|
2021-07-25 19:33:06 +00:00
|
|
|
"prepublishOnly": "run-s license-badges copy prep build-docs"
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/SVG-Edit/svgedit.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"svg-editor",
|
|
|
|
"javascript",
|
|
|
|
"svg-edit",
|
|
|
|
"svg"
|
|
|
|
],
|
|
|
|
"author": "Narendra Sisodiya",
|
|
|
|
"contributors": [
|
|
|
|
"Pavol Rusnak",
|
|
|
|
"Jeff Schiller",
|
|
|
|
"Vidar Hokstad",
|
|
|
|
"Alexis Deveria",
|
2018-05-29 08:45:45 +00:00
|
|
|
"Brett Zamir",
|
2021-05-09 17:29:45 +00:00
|
|
|
"Fabien Jacq",
|
|
|
|
"OptimistikSAS"
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
],
|
2020-05-04 01:19:16 +00:00
|
|
|
"license": "(MIT AND Apache-2.0 AND ISC AND LGPL-3.0-or-later AND X11)",
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/SVG-Edit/svgedit/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/SVG-Edit/svgedit#readme",
|
2018-10-29 00:46:34 +00:00
|
|
|
"browserslist": [
|
2020-07-26 18:11:18 +00:00
|
|
|
">0%",
|
|
|
|
"not Opera < 59",
|
|
|
|
"not IE < 12",
|
|
|
|
"not Chrome < 75",
|
|
|
|
"not FireFox < 68",
|
2021-05-09 17:29:45 +00:00
|
|
|
"not Safari < 11",
|
|
|
|
"not ios_saf < 10",
|
|
|
|
"not android < 5",
|
|
|
|
"not op_mini all",
|
|
|
|
"not Edge < 18",
|
|
|
|
"not dead"
|
2018-10-29 00:46:34 +00:00
|
|
|
],
|
2020-08-09 16:33:17 +00:00
|
|
|
"dependencies": {
|
2020-11-11 10:38:45 +00:00
|
|
|
"@babel/polyfill": "7.12.1",
|
|
|
|
"canvg": "3.0.7",
|
2021-08-01 21:46:08 +00:00
|
|
|
"core-js": "3.16.0",
|
2021-05-19 21:09:40 +00:00
|
|
|
"elix": "15.0.0",
|
2021-07-25 19:21:54 +00:00
|
|
|
"html2canvas": "1.1.4",
|
|
|
|
"i18next": "20.3.5",
|
2021-05-09 17:29:45 +00:00
|
|
|
"jspdf": "2.3.1",
|
2020-11-11 10:38:45 +00:00
|
|
|
"pathseg": "1.2.0",
|
2021-07-25 19:21:54 +00:00
|
|
|
"regenerator-runtime": "0.13.9",
|
|
|
|
"rollup-plugin-polyfill-node": "0.7.0",
|
2021-05-09 17:29:45 +00:00
|
|
|
"svg2pdf.js": "2.1.0"
|
2020-08-09 16:33:17 +00:00
|
|
|
},
|
2018-05-13 03:03:45 +00:00
|
|
|
"devDependencies": {
|
2021-07-25 19:21:54 +00:00
|
|
|
"@babel/core": "7.14.8",
|
2021-08-01 21:46:08 +00:00
|
|
|
"@babel/preset-env": "7.14.9",
|
2021-07-25 19:21:54 +00:00
|
|
|
"@babel/register": "7.14.5",
|
2021-08-01 21:46:08 +00:00
|
|
|
"@babel/runtime-corejs3": "7.14.9",
|
|
|
|
"@cypress/code-coverage": "3.9.10",
|
2021-05-09 17:29:45 +00:00
|
|
|
"@cypress/fiddle": "1.19.2",
|
|
|
|
"@fintechstudios/eslint-plugin-chai-as-promised": "3.1.0",
|
|
|
|
"@rollup/plugin-babel": "5.3.0",
|
2021-08-01 21:46:08 +00:00
|
|
|
"@rollup/plugin-commonjs": "20.0.0",
|
|
|
|
"@rollup/plugin-dynamic-import-vars": "1.4.0",
|
2021-07-25 19:55:36 +00:00
|
|
|
"@rollup/plugin-node-resolve": "13.0.4",
|
|
|
|
"@rollup/plugin-replace": "3.0.0",
|
2021-08-01 21:46:08 +00:00
|
|
|
"@rollup/plugin-url": "6.1.0",
|
|
|
|
"@web/dev-server": "0.1.20",
|
|
|
|
"@web/dev-server-rollup": "0.3.7",
|
|
|
|
"axe-core": "4.3.2",
|
2020-11-11 10:38:45 +00:00
|
|
|
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
|
2021-05-09 17:29:45 +00:00
|
|
|
"copyfiles": "2.4.1",
|
2021-08-01 21:46:08 +00:00
|
|
|
"core-js-bundle": "3.16.0",
|
2020-11-11 10:38:45 +00:00
|
|
|
"cp-cli": "2.0.0",
|
2021-08-01 21:46:08 +00:00
|
|
|
"cypress": "8.1.0",
|
2021-05-09 17:29:45 +00:00
|
|
|
"cypress-axe": "0.12.2",
|
|
|
|
"cypress-multi-reporters": "1.5.0",
|
2020-11-11 10:38:45 +00:00
|
|
|
"cypress-plugin-snapshots": "1.4.4",
|
2021-08-01 21:46:08 +00:00
|
|
|
"eslint": "7.32.0",
|
2021-06-05 09:43:03 +00:00
|
|
|
"eslint-config-standard": "16.0.3",
|
2020-11-11 10:38:45 +00:00
|
|
|
"eslint-plugin-array-func": "3.1.7",
|
|
|
|
"eslint-plugin-chai-expect": "2.2.0",
|
2021-05-09 17:29:45 +00:00
|
|
|
"eslint-plugin-chai-expect-keywords": "2.1.0",
|
2021-05-14 22:23:53 +00:00
|
|
|
"eslint-plugin-chai-friendly": "0.7.1",
|
2021-07-25 19:21:54 +00:00
|
|
|
"eslint-plugin-compat": "3.11.1",
|
2021-05-09 18:51:26 +00:00
|
|
|
"eslint-plugin-cypress": "2.11.3",
|
2020-11-11 10:38:45 +00:00
|
|
|
"eslint-plugin-eslint-comments": "3.2.0",
|
2021-07-25 19:21:54 +00:00
|
|
|
"eslint-plugin-html": "6.1.2",
|
2021-06-05 09:43:03 +00:00
|
|
|
"eslint-plugin-import": "2.23.4",
|
2021-08-01 21:46:08 +00:00
|
|
|
"eslint-plugin-jsdoc": "36.0.6",
|
2021-07-25 19:21:54 +00:00
|
|
|
"eslint-plugin-markdown": "2.2.0",
|
|
|
|
"eslint-plugin-no-unsanitized": "3.1.5",
|
2020-11-11 10:38:45 +00:00
|
|
|
"eslint-plugin-no-use-extend-native": "0.5.0",
|
|
|
|
"eslint-plugin-node": "11.1.0",
|
2021-07-25 19:21:54 +00:00
|
|
|
"eslint-plugin-promise": "5.1.0",
|
2021-05-09 17:29:45 +00:00
|
|
|
"eslint-plugin-standard": "4.1.0",
|
2021-07-25 19:21:54 +00:00
|
|
|
"eslint-plugin-unicorn": "34.0.1",
|
2020-11-11 10:38:45 +00:00
|
|
|
"imageoptim-cli": "3.0.2",
|
2021-05-09 17:29:45 +00:00
|
|
|
"jamilih": "0.54.0",
|
2021-05-19 21:09:40 +00:00
|
|
|
"jsdoc": "3.6.7",
|
2020-11-11 10:38:45 +00:00
|
|
|
"node-static": "0.7.11",
|
|
|
|
"npm-run-all": "4.1.5",
|
|
|
|
"nyc": "15.1.0",
|
2021-07-25 19:55:36 +00:00
|
|
|
"open-cli": "7.0.0",
|
2020-11-11 10:38:45 +00:00
|
|
|
"promise-fs": "2.1.1",
|
2021-07-25 19:21:54 +00:00
|
|
|
"qr-manipulation": "0.7.0",
|
|
|
|
"query-result": "1.0.5",
|
2020-11-11 10:38:45 +00:00
|
|
|
"remark-cli": "9.0.0",
|
|
|
|
"remark-lint-ordered-list-marker-value": "2.0.1",
|
|
|
|
"rimraf": "3.0.2",
|
2021-08-01 21:46:08 +00:00
|
|
|
"rollup": "2.55.1",
|
2021-05-09 17:29:45 +00:00
|
|
|
"rollup-plugin-copy": "3.4.0",
|
|
|
|
"rollup-plugin-filesize": "9.1.1",
|
2020-11-11 10:38:45 +00:00
|
|
|
"rollup-plugin-node-polyfills": "0.2.1",
|
|
|
|
"rollup-plugin-progress": "1.1.2",
|
|
|
|
"rollup-plugin-re": "1.0.7",
|
|
|
|
"rollup-plugin-terser": "7.0.2",
|
2021-08-01 21:46:08 +00:00
|
|
|
"start-server-and-test": "1.13.1"
|
2018-05-13 03:03:45 +00:00
|
|
|
}
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
}
|