UNPKG

@api-components/api-property-form-item

Version:

An input to use with forms to render inputs based in ARC view-model

104 lines (103 loc) 3.25 kB
{ "name": "@api-components/api-property-form-item", "description": "An input to use with forms to render inputs based in ARC view-model", "version": "3.0.16", "license": "Apache-2.0", "main": "index.js", "module": "index.js", "keywords": [ "web-components", "api-console", "form-item" ], "authors": [ "Pawel Psztyc" ], "contributors": [ "Your name can be here!" ], "repository": { "type": "git", "url": "git://github.com/advanced-rest-client/api-property-form-item.git" }, "bugs": { "url": "https://github.com/advanced-rest-client/api-property-form-item/issues", "email": "arc@mulesoft.com" }, "dependencies": { "@advanced-rest-client/arc-icons": "^3.2.2", "@anypoint-web-components/anypoint-button": "^1.1.1", "@anypoint-web-components/anypoint-checkbox": "^1.1.3", "@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20", "@anypoint-web-components/anypoint-input": "^0.2.23", "@anypoint-web-components/anypoint-item": "^1.0.8", "@anypoint-web-components/anypoint-listbox": "^1.1.6", "@anypoint-web-components/validatable-mixin": "^1.1.3", "lit-element": "^2.4.0", "lit-html": "^1.3.0" }, "devDependencies": { "@advanced-rest-client/arc-demo-helper": "^2.2.4", "@anypoint-web-components/anypoint-radio-button": "^0.1.6", "@anypoint-web-components/anypoint-styles": "^1.0.1", "@api-components/api-view-model-transformer": "^4.2.2", "@open-wc/eslint-config": "^4.2.0", "@open-wc/testing": "^2.5.32", "@polymer/iron-test-helpers": "^3.0.1", "@web/test-runner": "^0.11.7", "@web/test-runner-playwright": "^0.7.2", "deepmerge": "^4.2.2", "es-dev-server": "^2.0.2", "eslint": "^7.17.0", "eslint-config-prettier": "^7.1.0", "husky": "^4.3.6", "lint-staged": "^10.5.3", "sinon": "^9.2.3", "typescript": "^4.1.3", "typescript-lit-html-plugin": "^0.9.0" }, "scripts": { "start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch", "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", "gen:wc": "wca analyze \"*.js\" --outFile custom-elements.json", "generate-model": "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-plusplus": "off", "no-unused-expressions": "off", "class-methods-use-this": "off", "import/no-extraneous-dependencies": "off" } } ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix" ] } }