-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
41 lines (41 loc) · 1.67 KB
/
package.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
40
41
{
"name": "purescript-webaudio",
"version": "0.1.0",
"description": "A PureScript wrapper for the HTML5 Web Audio API",
"main": "",
"scripts": {
"postinstall": "bower install",
"build:clean": "rm -rf dist output examples/*/output test/*/output",
"build": "pulp build",
"build:example:square-wave": "pulp browserify --main SquareWave --to examples/square-wave/output/bundle.js -I examples/square-wave",
"exec:example:square-wave": "cd examples/square-wave/ && python -m SimpleHTTPServer 8000",
"build:example:gain": "pulp build --main Gain --to examples/gain/output/bundle.js -I examples/gain",
"exec:example:gain": "cd examples/gain/ && python -m SimpleHTTPServer 8000",
"build:example:decode": "pulp build --main DecodeAudio --to examples/decode/output/bundle.js -I examples/decode",
"exec:example:decode": "cd examples/decode/ && python -m SimpleHTTPServer 8000",
"build:example:decode-async": "pulp build --main DecodeAsync --to examples/decodeAsync/output/bundle.js -I examples/decodeAsync",
"exec:example:decode-async": "cd examples/decodeAsync/ && python -m SimpleHTTPServer 8000",
"build:test:props": "pulp build --main TestProps --to test/props/output/bundle.js -I test/props",
"exec:test:props": "cd test/props/ && python -m SimpleHTTPServer 8000"
},
"private": true,
"author": {
"name": "Chris Waterson",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alex Kelley",
"email": "",
"url": "https://github.com/adkelley"
},
{
"name": "John Watson",
"email": "",
"url": "https://github.com/newlandsvalley"
}
],
"license": "MIT",
"devDependencies": {
}
}