-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.2 KB
/
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
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
74
75
76
77
{
"name": "mp3-downloader",
"version": "3.2.0",
"description": "A simple command line music downloader with metadata",
"repository": "https://github.com/Jense5/mp3-downloader.git",
"author": [
"Jensen Bernard <[email protected]> (twitter.com/Jense5_)",
"Jochen Bernard <[email protected]>"
],
"license": "MIT",
"keywords": [
"mp3",
"music",
"download",
"tags",
"metadata",
"itunes"
],
"files": [
"dist",
"README.md"
],
"main": "./dist/index.js",
"bin": {
"mp3": "./dist/cli.js"
},
"scripts": {
"start": "node ./dist/cli.js",
"prebuild": "rimraf dist",
"build": "babel src -d dist --copy-files",
"build:watch": "npm run build && npm run build -- -w",
"eslint": "eslint src test",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"pretest": "npm run eslint && npm run flow",
"test": "mocha test --compilers js:babel-core/register",
"test:watch": "npm run test -- -w",
"cover": "nyc npm run test",
"cover:check": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80",
"cover:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublish": "yarn build"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"country-language": "^0.1.7",
"itunes-info": "^0.5.0",
"node-id3": "^0.0.9",
"node-user-defaults": "^2.1.0",
"ora": "^1.2.0",
"tic-toc": "^0.1.0",
"untildify": "^3.0.2",
"winston": "^2.3.0",
"youtube-dl-status": "^0.1.0",
"youtube-node": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.8",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.37.4",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.5.4"
}
}