forked from audiocogs/aurora.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1010 Bytes
/
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
42
43
44
{
"name": "av",
"description": "Audio decoding framework",
"version": "0.4.8",
"author": {
"name": "Audiocogs",
"url": "http://audiocogs.org/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/audiocogs/aurora.js.git"
},
"bugs": "https://github.com/audiocogs/aurora.js/issues",
"optionalDependencies": {
"speaker": "~0.2.5"
},
"devDependencies": {
"coffee-script": ">=1.0",
"qunit-cli": "*",
"browserify": "^4.1.10",
"coffeeify": "^0.6.0",
"exorcist": "^0.1.6"
},
"scripts": {
"prepublish": "make js",
"postpublish": "make clean",
"test": "coffee tests/test.coffee"
},
"engine": [
"node >= v0.6.0"
],
"main": "./node",
"browserify": {
"transform": [
"coffeeify"
]
},
"browser": {
"./node": "./browser.coffee",
"./src/sources/node/file.coffee": "./src/sources/browser/file.coffee",
"./src/sources/node/http.coffee": "./src/sources/browser/http.coffee"
}
}