UNPKG

@advanced-rest-client/raw-payload-editor

Version:
102 lines (101 loc) 3.19 kB
{ "name": "@advanced-rest-client/raw-payload-editor", "description": "A raw payload input editor based on CodeMirror", "version": "3.0.7", "license": "Apache-2.0", "main": "raw-payload-editor.js", "module": "raw-payload-editor.js", "keywords": [ "web-components", "payload-editor", "code-mirror" ], "authors": [ "Pawel Psztyc" ], "contributors": [ "Your name can be here!" ], "repository": { "type": "git", "url": "git://github.com/advanced-rest-client/raw-payload-editor.git" }, "bugs": { "url": "https://github.com/advanced-rest-client/raw-payload-editor/issues", "email": "arc@mulesoft.com" }, "dependencies": { "@advanced-rest-client/arc-resizable-mixin": "^1.2.2", "@advanced-rest-client/code-mirror": "^3.0.3", "@advanced-rest-client/code-mirror-linter": "^3.0.0", "@advanced-rest-client/events-target-mixin": "^3.2.4", "@advanced-rest-client/payload-parser-mixin": "^3.0.1", "@anypoint-web-components/anypoint-button": "^1.2.3", "@polymer/paper-toast": "^3.0.0", "lit-element": "^2.2.1" }, "devDependencies": { "@advanced-rest-client/arc-demo-helper": "^3.0.3", "@advanced-rest-client/content-type-selector": "^3.2.0", "@anypoint-web-components/anypoint-checkbox": "^1.2.2", "@anypoint-web-components/anypoint-styles": "^1.0.2", "@commitlint/cli": "^13.2.0", "@commitlint/config-conventional": "^13.2.0", "@open-wc/eslint-config": "^4.2.0", "@open-wc/testing": "^2.5.32", "@web/dev-server": "^0.1.24", "@web/test-runner": "0.13.18", "@web/test-runner-playwright": "^0.8.8", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "husky": "^7.0.2", "lint-staged": "^11.1.2", "sinon": "^11.1.2", "typescript": "^4.4.3", "typescript-lit-html-plugin": "^0.9.0" }, "scripts": { "start": "web-dev-server --app-index demo/index.html --node-resolve --open --watch --root-dir .", "lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore", "format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore", "lint:types": "tsc", "lint": "npm run lint:eslint", "format": "npm run format:eslint", "test": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox", "test:watch": "web-test-runner test/**/*.test.js --node-resolve --watch --playwright --browsers chromium", "gen:wc": "wca analyze \"*.js\" --outFile custom-elements.json" }, "eslintConfig": { "extends": [ "@open-wc/eslint-config", "eslint-config-prettier" ], "overrides": [ { "files": [ "demo/**/*.js", "test/**/*.js", "**/demo/**/*.html" ], "rules": { "no-console": "off", "no-unused-expressions": "off", "no-plusplus": "off", "no-param-reassing": "off", "class-methods-use-this": "off", "import/no-extraneous-dependencies": "off" } } ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix" ] } }