lion/packages/combobox/package.json
Thijs Louisse 01a798e59e feat(combobox): new package combobox
Co-authored-by: Joren Broekema <Joren.Broekema@ing.com>
2020-09-30 19:33:34 +02:00

48 lines
1.1 KiB
JSON

{
"name": "@lion/combobox",
"version": "0.0.0",
"description": "A widget made up of a single-line textbox and an associated pop-up listbox element",
"license": "MIT",
"author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/",
"repository": {
"type": "git",
"url": "https://github.com/ing-bank/lion.git",
"directory": "packages/combobox"
},
"main": "index.js",
"module": "index.js",
"files": [
"*.d.ts",
"*.js",
"docs",
"src",
"test",
"test-helpers",
"translations",
"types"
],
"scripts": {
"prepublishOnly": "../../scripts/npm-prepublish.js",
"test": "cd ../../ && yarn test:browser --grep \"packages/combobox/test/**/*.test.js\"",
"test:watch": "cd ../../ && yarn test:browser:watch --grep \"packages/combobox/test/**/*.test.js\""
},
"sideEffects": [
"lion-combobox.js"
],
"dependencies": {
"@lion/core": "0.12.0",
"@lion/form-core": "0.6.1",
"@lion/listbox": "0.1.1",
"@lion/overlays": "0.19.0"
},
"keywords": [
"combobox",
"form",
"lion",
"web-components"
],
"publishConfig": {
"access": "public"
}
}