-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.26 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.26 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
{
"name": "node-audio-slicer",
"description": "Read-Slice-Write audio files (mp3 and wav) from Node.js",
"version": "0.0.7",
"homepage": "https://github.com/PyrApple/node-audio-slicer",
"bugs": {
"url": "https://github.com/PyrApple/node-audio-slicer/issues"
},
"author": {
"name": "David Poirier-Quinot",
"email": "davipoir@gmail.com",
"url": "pyrapple.github.io"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/PyrApple/node-audio-slicer/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/PyrApple/node-audio-slicer.git"
},
"keywords": [
"mp3",
"wav",
"chunk",
"slicer",
"audio",
"streaming"
],
"engines": {
"node": ">=6.9"
},
"main": "./dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"build": "babel src --presets babel-preset-es2015 --out-dir dist"
},
"files": [
"src",
"dist",
"index.js",
"README.md"
],
"dependencies": {
"fs": "0.0.1-security",
"node-lame": "^1.0.4",
"string_decoder": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"node-wav": "0.0.2"
}
}