forked from doomjs/opl3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "opl3",
"version": "0.4.3",
"description": "OPL3 emulator library",
"main": "index.js",
"preferGlobal": true,
"bin": {
"opl3": "cli.js"
},
"scripts": {
"bundle": "browserify index.js --standalone OPL3 | derequire > dist/opl3.js",
"postbundle": "uglifyjs dist/opl3.js > dist/opl3.min.js",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc.json lib/**/*.js ./*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/doomjs/opl3.git"
},
"keywords": [
"opl",
"opl3",
"YMF262",
"javascript",
"sound",
"blaster",
"music",
"doom",
"dosbox",
"laa",
"mus",
"dro",
"imf",
"raw"
],
"author": "IDDQD",
"license": "MIT",
"bugs": {
"url": "https://github.com/doomjs/opl3/issues"
},
"homepage": "https://github.com/doomjs/opl3#readme",
"dependencies": {
"async": "^2.0.1",
"chalk": "^1.1.3",
"duration": "^0.2.0",
"extend": "^3.0.0",
"glob": "^7.0.5",
"jsmidgen": "^0.1.5",
"mkdirp": "^0.5.1",
"numeral": "^1.5.3",
"pcm-bitdepth-converter": "^0.1.0",
"pcm-normalizer": "^0.1.0",
"progress": "^1.1.8",
"setimmediate": "^1.0.4",
"stream-buffers": "^3.0.0",
"wad-genmidi": "^0.1.0",
"wav-arraybuffer": "^0.1.0",
"yargs": "^4.8.1"
},
"optionalDependencies": {
"lame": "github:doomjs/node-lame",
"node-opus": "github:doomjs/node-opus",
"ogg": "github:doomjs/node-ogg",
"speaker": "github:doomjs/node-speaker",
"vorbis": "github:doomjs/node-vorbis"
},
"devDependencies": {
"browserify": "^15.0.1",
"derequire": "^2.1.0",
"eslint": "^3.2.0",
"uglify-js": "^2.6.4"
}
}