UNPKG

@anypoint-web-components/anypoint-listbox

Version:
97 lines (96 loc) 2.81 kB
{ "name": "@anypoint-web-components/anypoint-listbox", "description": "Anypoint styled list of options", "version": "1.1.7", "license": "Apache-2.0", "main": "index.js", "module": "index.js", "keywords": [ "web-components", "anypoint-web-components", "selection", "listbox", "list" ], "authors": [ "Pawel Psztyc" ], "contributors": [ "The Advanced REST client authors <arc@mulesoft.com>", "Your name can be here!" ], "repository": { "type": "git", "url": "git://github.com/anypoint-web-components/anypoint-listbox.git" }, "bugs": { "url": "https://github.com/anypoint-web-components/anypoint-listbox/issues", "email": "arc@mulesoft.com" }, "dependencies": { "@anypoint-web-components/anypoint-menu-mixin": "^1.1.7", "lit-element": "^2.5.1", "lit-html": "^1.4.1" }, "devDependencies": { "@advanced-rest-client/arc-demo-helper": "^1.0.17", "@anypoint-web-components/anypoint-item": "^1.1.2", "@anypoint-web-components/anypoint-styles": "^1.0.1", "@open-wc/eslint-config": "^4.3.0", "@open-wc/testing": "^2.5.33", "@web/dev-server": "^0.1.17", "@web/test-runner": "^0.13.5", "@web/test-runner-playwright": "^0.8.6", "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", "husky": "^6.0.0", "lint-staged": "^11.0.0", "sinon": "^11.1.1", "typescript": "^4.3.2", "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": { "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" ] } }