-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbower.json
39 lines (39 loc) · 928 Bytes
/
bower.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "purescript-variant",
"homepage": "https://github.com/natefaubion/purescript-variant",
"authors": [
"Nathan Faubion <[email protected]>"
],
"description": "Polymorphic variants for PureScript",
"license": "MIT",
"keywords": [
"purescript",
"polymorphic",
"variants"
],
"repository": {
"type": "git",
"url": "https://github.com/natefaubion/purescript-variant.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output",
"test"
],
"dependencies": {
"purescript-prelude": "^6.0.0",
"purescript-tuples": "^7.0.0",
"purescript-unsafe-coerce": "^6.0.0",
"purescript-partial": "^4.0.0",
"purescript-maybe": "^6.0.0",
"purescript-lists": "^7.0.0",
"purescript-record": "^4.0.0",
"purescript-enums": "^6.0.0"
},
"devDependencies": {
"purescript-assert": "^6.0.0",
"purescript-either": "^6.0.0"
}
}