-
Notifications
You must be signed in to change notification settings - Fork 2
/
bower.json
32 lines (32 loc) · 1.03 KB
/
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
{
"name": "purescript-asteroids",
"version": "0.1.0",
"description": "A variation of the arcade classic written for a web browser in PureScript.",
"main": "Asteroids.purs",
"authors": [
"Chris Waterson <[email protected]>"
],
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"libs",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"purescript-arrays": "*",
"purescript-foldable-traversable": "*",
"purescript-lists": "*",
"purescript-math": "*",
"purescript-maybe": "*",
"purescript-random": "*",
"purescript-tuples": "*",
"purescript-strings": "*",
"purescript-simple-dom": "waterson/purescript-simple-dom",
"purescript-canvas": "*",
"purescript-webaudio": "waterson/purescript-webaudio"
}
}