@api-components/api-summary
Version:
A summary view for an API base on AMF data model
108 lines (107 loc) • 3.1 kB
JSON
{
"name": "@api-components/api-summary",
"description": "A summary view for an API base on AMF data model",
"version": "4.6.12",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
"keywords": [
"api-components",
"summary"
],
"authors": [
"Pawel Psztyc"
],
"contributors": [
"Francisco Di Giandomenico",
"Your name can be here!"
],
"repository": {
"type": "git",
"url": "git://github.com/advanced-rest-client/api-summary.git"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/api-summary/issues",
"email": "arc@mulesoft.com"
},
"dependencies": {
"@advanced-rest-client/arc-marked": "^1.1.2",
"@advanced-rest-client/icons": "^4.0.2",
"@advanced-rest-client/markdown-styles": "^3.1.5",
"@api-components/amf-helper-mixin": "4.5.30",
"@api-components/api-method-documentation": "^5.2.5",
"@api-components/api-model-generator": "^0.2.14",
"@api-components/http-method-label": "^3.1.4",
"@api-components/raml-aware": "^3.0.0",
"dompurify": "^2.3.3",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
},
"devDependencies": {
"@advanced-rest-client/arc-demo-helper": "^3.0.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@open-wc/eslint-config": "^12.0.0",
"@open-wc/testing": "^2.5.32",
"@web/dev-server": "^0.1.8",
"@web/test-runner": "^0.13.15",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"playwright": "1.25.2",
"rimraf": "^5.0.5",
"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",
"test:watch": "web-test-runner test/*.test.js --node-resolve --watch",
"gen:wc": "wca analyze \"*.js\" --outFile custom-elements.json",
"prepare": "node demo/model.js"
},
"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"
]
},
"overrides": {
"playwright": "1.25.2"
}
}