-
Notifications
You must be signed in to change notification settings - Fork 185
/
package.json
48 lines (48 loc) · 1.04 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
42
43
44
45
46
47
48
{
"name": "av",
"description": "Audio decoding framework",
"version": "0.4.9",
"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",
"dependencies": {
"coffeeify": "^0.6.0"
},
"optionalDependencies": {
"speaker": "^0.3.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"coffee-script": ">=1.0",
"exorcist": "^0.1.6",
"mocha": "^2.5.3",
"mochify": "^2.18.0",
"node-static": "^0.7.7"
},
"scripts": {
"prepublish": "make js",
"postpublish": "make clean",
"test": "make test"
},
"engine": [
"node >= v0.6.0"
],
"main": "./node",
"browserify": {
"transform": [
"coffeeify"
]
},
"browser": {
"./node": "./browser.coffee",
"./src/sources/node/file": "./src/sources/browser/file.coffee",
"./src/sources/node/http": "./src/sources/browser/http.coffee"
}
}