Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 26 additions & 29 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
{
"name": "purescript-html-parser-halogen",
"description": "A library to render HTML string into halogen views",
"keywords": [
"purescript",
"halogen",
"html"
],
"repository": {
"type": "git",
"url": "git://github.com/rnons/purescript-html-parser-halogen.git"
},
"license": "BSD-3-Clause",
"ignore": [
"**/.*",
"bower_components",
"docs",
"example",
"node_modules",
"output",
"yarn.lock"

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. I think these are still needed, so that bower install won't pull the example folder and yarn.lock.

It's good to keep the description field as well.

I don't know, maybe we can remove "purescript-psci-support".

],
"dependencies": {
"purescript-string-parsers": "^6.0.0",
"purescript-halogen": "^6.1.0"
},
"devDependencies": {
"purescript-psci-support": "^5.0.0",
"purescript-debug": "^5.0.0"
}
"name": "purescript-html-parser-halogen",
"license": [
"BSD-3-Clause"
],
"repository": {
"type": "git",
"url": "https://github.com/rnons/purescript-html-parser-halogen.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"dependencies": {
"purescript-arrays": "^v7.0.0",
"purescript-control": "^v6.0.0",
"purescript-dom-indexed": "^v11.0.0",
"purescript-effect": "^v4.0.0",
"purescript-foldable-traversable": "^v6.0.0",
"purescript-halogen": "^v7.0.0",
"purescript-jest": "^v1.0.0",
"purescript-maybe": "^v6.0.0",
"purescript-prelude": "^v6.0.0",
"purescript-psci-support": "^v6.0.0"
}
}
2 changes: 2 additions & 0 deletions spago.dhall
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{ name = "html-parser-halogen"
, license = "BSD-3-Clause"
, repository = "https://github.com/rnons/purescript-html-parser-halogen.git"
, dependencies =
[ "arrays"
, "control"
Expand Down