forked from adrianblynch/flac-to-mp3
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 905 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
{
"name": "ffmpeg-wrapper",
"version": "1.0.0",
"description": "Convert .flac files to .mp3 using ffmpeg",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "npm test && npm run coveralls"
},
"keywords": [
"flac",
"mp3",
"convert",
"converter",
"ffmpeg",
"utils",
"wrapper"
],
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Eomm/flac-to-mp3.git"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"glob": "^7.1.2",
"jest": "^22.4.2"
}
}