« get me outta code hell

package.json - http-music - Command-line music player + utils (not a server!)
about summary refs log tree commit diff
path: root/package.json
blob: 8aded33f5e6fd8861833e7791da9a0de2abd58c7 (plain)
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
{
  "name": "http-music",
  "version": "0.0.1",
  "main": "src/cli.js",
  "scripts": {
    "play": "node src/play",
    "crawl-http": "node src/crawl-http",
    "crawl-local": "node src/crawl-local",
    "crawl-itunes": "node src/crawl-itunes",
    "download-playlist": "node src/download-playlist"
  },
  "bin": {
    "http-music": "./src/cli.js"
  },
  "man": [
    "./man/http-music.1",
    "./man/http-music-play.1",
    "./man/http-music-crawl-http.1",
    "./man/http-music-crawl-itunes.1",
    "./man/http-music-crawl-youtube.1"
  ],
  "dependencies": {
    "cheerio": "^1.0.0-rc.1",
    "clone": "^2.1.1",
    "command-exists": "^1.2.2",
    "fifo-js": "^2.1.0",
    "fs-extra": "^3.0.1",
    "mkdirp": "^0.5.1",
    "ncp": "^2.0.0",
    "node-fetch": "^1.7.0",
    "node-natural-sort": "^0.8.6",
    "sanitize-filename": "^1.6.1",
    "seed-random": "^2.2.0",
    "tempy": "^0.1.0",
    "xmldoc": "^1.1.0"
  }
}