2022-06-29 21:08:55 +03:00
|
|
|
{
|
|
|
|
"name": "elm-ui-select",
|
2023-03-11 00:41:43 +03:00
|
|
|
"description": "A select widget for elm-ui with keyboard input, filtering, menu scrolling and requests!",
|
2023-03-13 12:19:53 +03:00
|
|
|
"version": "3.1.3",
|
2022-06-29 21:08:55 +03:00
|
|
|
"scripts": {
|
2022-07-20 11:29:55 +03:00
|
|
|
"test": "cd examples && elm-test && cd ../",
|
|
|
|
"review": "elm-review",
|
|
|
|
"review-examples": "elm-review --elmjson examples/elm.json --config=review --ignore-dirs=../src",
|
2022-10-24 22:36:47 +03:00
|
|
|
"ci": "npm run review && npm run review-examples && npm run test",
|
|
|
|
"examples": "cd examples/src && elm reactor"
|
2022-06-29 21:08:55 +03:00
|
|
|
},
|
|
|
|
"pre-commit": [
|
2022-07-21 22:57:27 +03:00
|
|
|
"ci"
|
2022-06-29 21:08:55 +03:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nunntom/elm-ui-select.git"
|
|
|
|
},
|
|
|
|
"author": "Tom Nunn",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/nunntom/elm-ui-select/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/nunntom/elm-ui-select#readme",
|
|
|
|
"devDependencies": {
|
2022-10-24 22:36:47 +03:00
|
|
|
"elm": "^0.19.1-5",
|
|
|
|
"elm-format": "^0.8.5",
|
2022-07-20 11:29:55 +03:00
|
|
|
"elm-review": "^2.7.3",
|
2022-10-24 22:36:47 +03:00
|
|
|
"elm-test": "^0.19.1-revision9",
|
2022-06-29 21:08:55 +03:00
|
|
|
"pre-commit": "^1.2.2"
|
|
|
|
}
|
2022-10-24 22:36:47 +03:00
|
|
|
}
|