UNPKG

@api-client/har

Version:

Everything related to HAR processing and visualizing in API Client.

113 lines (112 loc) 3.42 kB
{ "name": "@api-client/har", "description": "Everything related to HAR processing and visualizing in API Client.", "version": "0.2.2", "license": "cc-by-4.0", "main": "index.js", "module": "index.js", "keywords": [ "web-components", "HTTP", "HAR" ], "author": { "name": "Pawel Uchida-Psztyc", "email": "arc@mulesoft.com" }, "contributors": [ "Your name can be here!" ], "repository": { "type": "git", "url": "git://github.com/api-client/har.git" }, "bugs": { "url": "https://github.com/api-client/har/issues", "email": "arc@mulesoft.com" }, "dependencies": { "@advanced-rest-client/arc-cookies": "^0.2.0", "@advanced-rest-client/arc-events": "^0.2.21", "@advanced-rest-client/arc-headers": "^0.1.10", "@advanced-rest-client/body-editor": "^0.2.5", "@anypoint-web-components/anypoint-collapse": "^0.1.2", "@anypoint-web-components/anypoint-item": "^1.1.2", "@anypoint-web-components/anypoint-listbox": "^1.1.7", "@anypoint-web-components/anypoint-tabs": "^0.1.19", "lit-element": "^2.5.1", "lit-html": "^1.4.1" }, "devDependencies": { "@advanced-rest-client/arc-data-generator": "^4.0.1", "@advanced-rest-client/arc-demo-helper": "^3.0.3", "@advanced-rest-client/arc-types": "^0.2.61", "@babel/core": "^7.15.8", "@babel/eslint-parser": "^7.15.8", "@open-wc/eslint-config": "^4.3.0", "@open-wc/testing": "^2.5.33", "@types/har-format": "^1.2.7", "@web/dev-server": "^0.1.25", "@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.2.0", "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 webkit", "test:watch": "web-test-runner test/**/*.test.js --node-resolve --watch --playwright --browsers chromium", "gen:wc": "wca analyze \"*.js\" --outFile custom-elements.json" }, "eslintConfig": { "parser": "@babel/eslint-parser", "extends": [ "@open-wc/eslint-config", "eslint-config-prettier" ], "parserOptions": { "requireConfigFile": false }, "overrides": [ { "files": [ "demo/**/*.js", "test/**/*.js", "test/*.js", "**/demo/**/*.html" ], "rules": { "no-console": "off", "no-unused-expressions": "off", "no-plusplus": "off", "no-continue": "off", "no-param-reassign": "off", "class-methods-use-this": "off", "import/no-extraneous-dependencies": "off", "prefer-destructuring": "off", "no-template-curly-in-string": "off" } } ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix" ] } }