« 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: 0d656ae7b3b4af104317b5a3cf5fc955f6b113c6 (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
{
  "name": "http-music",
  "version": "0.0.1",
  "main": "src/http-music.js",
  "scripts": {
    "play": "node src/http-music.js",
    "crawl-http": "node src/crawl-http",
    "crawl-local": "node src/crawl-local"
  },
  "bin": {
    "http-music": "./src/http-music.js",
    "http-music-crawl-http": "./src/crawl-http.js",
    "http-music-crawl-local": "./src/crawl-local.js"
  },
  "man": {
    "http-music": "./man/http-music.1",
    "http-music-crawl-http": "./man/http-music-crawl-http.1"
  },
  "dependencies": {
    "cheerio": "^1.0.0-rc.1",
    "node-fetch": "^1.7.0",
    "node-natural-sort": "^0.8.6",
    "sanitize-filename": "^1.6.1",
    "tempy": "^0.1.0"
  }
}