-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 931 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
45
{
"name": "alac",
"version": "0.1.0",
"description": "An Apple Lossless decoder for Aurora.js",
"main": "src/decoder",
"peerDependencies": {
"av": "~0.4.0"
},
"devDependencies": {
"exorcist": "^0.1.6",
"browserify": "^4.1.10",
"browserify-shim": "^3.5.0",
"coffeeify": "^0.6.0",
"coffee-script": "^1.7.1"
},
"browserify": {
"transform": [
"coffeeify"
]
},
"browserify-shim": {
"av": "global:AV"
},
"scripts": {
"prepublish": "make js",
"postpublish": "make clean"
},
"repository": {
"type": "git",
"url": "git://github.com/audiocogs/alac.js"
},
"keywords": [
"audio",
"av",
"aurora.js",
"aurora",
"decode"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/audiocogs/alac.js/issues"
},
"homepage": "https://github.com/audiocogs/alac.js"
}