forked from talmobi/yt-search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "yt-search",
"version": "2.10.4",
"description": "search youtube",
"main": "src/index.js",
"bin": {
"yt-search": "bin/cli.js",
"yt-search-video": "bin/mpv_video.sh",
"yt-search-audio": "bin/mpv_audio.sh"
},
"files": [
"src"
],
"scripts": {
"debug": "debug=1 node src/index.js --silent",
"build": "npm run build:src",
"build:src": "browserify --node --no-bundle-external --standalone ytSearch -t [ babelify --presets [ @babel/preset-env ] ] src/index.js -o dist/yt-search.js 2>&1 | wooster",
"prepublishOnly": "npm test",
"test:production": "node test/test.js | faucet",
"test:util": "node test/test-get-scripts.js",
"test:dev": "cross-env debug=1 test_yt_search=1 node test/test.js",
"test": "npm run test:util && npm run build && npm run test:production"
},
"author": "talmobi <talmo.christian@gmail.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/talmobi/yt-search"
},
"bugs": {
"url": "https://github.com/talmobi/yt-search/issues",
"email": "talmo.christian@gmail.com"
},
"dependencies": {
"async.parallellimit": "~0.5.2",
"boolstring": "~1.0.2",
"cheerio": "^1.0.0-rc.10",
"dasu": "~0.4.3",
"human-time": "0.0.2",
"jsonpath-plus": "~5.0.2",
"minimist": "~1.2.5",
"node-fzf": "~0.5.1"
},
"devDependencies": {
"@babel/core": "~7.11.4",
"@babel/preset-env": "~7.11.0",
"@talmobi/faucet": "0.0.3",
"babelify": "~10.0.0",
"browserify": "~17.0.0",
"cross-env": "~7.0.2",
"looks-same-plus": "0.0.2",
"spacestandard": "~0.3.0",
"tape": "~5.0.1",
"wooster": "~0.5.0"
}
}