-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 982 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
{
"name": "wav-audio-sprite",
"version": "0.1.5",
"description": "Concatenate WAV files and pads with silence to whole seconds, for use in audio sprites.",
"main": "lib/wav-audio-sprite.js",
"scripts": {
"lint": "eslint lib bin",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"audio",
"audio-sprite",
"howler",
"howler.js",
"sound",
"wav",
"webaudio"
],
"author": "Kristoffer Lundén <kristoffer.lunden@gmail.com>",
"license": "ISC",
"dependencies": {
"minimist": "^1.2.0",
"mkpath": "^1.0.0",
"node-wav": "0.0.2"
},
"bin": {
"howler-sprite": "bin/howler-sprite.js"
},
"devDependencies": {
"eslint": "^5.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kribblo/wav-audio-sprite.git"
},
"bugs": {
"url": "https://github.com/kribblo/wav-audio-sprite/issues"
},
"homepage": "https://github.com/kribblo/wav-audio-sprite#readme"
}