stimulus-autocomplete
Version:
StimulusJS autocomplete component
48 lines (47 loc) • 1.59 kB
JSON
{
"name": "stimulus-autocomplete",
"version": "3.1.0",
"description": "StimulusJS autocomplete component",
"type": "module",
"main": "src/autocomplete.js",
"exports": "./src/autocomplete.js",
"source": "src/autocomplete.js",
"author": "Alberto Fernández-Capel <alberto@hey.com>",
"license": "MIT",
"private": false,
"keywords": [
"stimulus",
"stimulusjs",
"controller",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/afcapel/stimulus-autocomplete.git"
},
"bugs": {
"url": "https://github.com/afcapel/stimulus-autocomplete/issues"
},
"homepage": "https://github.com/afcapel/stimulus-autocomplete",
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0"
},
"devDependencies": {
"@hotwired/stimulus": "^3.0.0",
"cypress": "^9.2.0",
"http-server": "^14.0.0",
"start-server-and-test": "^1.14.0"
},
"scripts": {
"start": "http-server ./examples -p 3030",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:firefox": "cypress run --browser firefox",
"cy:run": "cypress run",
"cy:all": "yarn run cy:run:chrome && yarn run cy:run:firefox",
"test": "start-server-and-test start http://localhost:3030 cy:run",
"test:multibrowser": "start-server-and-test start http://localhost:3030 cy:all",
"netlify:deploy": "rm examples/stimulus-autocomplete.js && cp -f src/autocomplete.js examples/stimulus-autocomplete.js",
"postversion": "git push && git push --tags",
"release": "yarn test && yarn version && npm adduser && npm publish"
}
}