-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "youtube-playlist-sorter",
"description": "Sorts ↕️ a public playlist based on it's popularity 🔥",
"version": "0.2.5",
"author": "Jaydeep Solanki <[email protected]> (https://jaydp.com)",
"bin": {
"youtube-playlist-sorter": "lib/index.js",
"yps": "lib/index.js"
},
"bugs": {
"url": "https://github.com/jaydp17/youtube-playlist-sorter/issues"
},
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"number-abbreviate": "^2.0.0",
"update-notifier": "^2.3.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"prettier": "1.7.4",
"release-it": "3.1.2",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">= 4.0.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/jaydp17/youtube-playlist-sorter#readme",
"keywords": [
"playlist",
"popularity",
"videos",
"views",
"youtube",
"youtube likes",
"youtube playlist",
"youtube playlist popularity",
"youtube playlist sorter",
"youtube videos",
"yps"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jaydp17/youtube-playlist-sorter.git"
},
"scripts": {
"build": "babel src -d lib",
"dev": "babel-node -- src/index.js",
"prebuild": "rimraf lib",
"prepublishOnly": "npm build",
"release-it": "release-it",
"test": "echo \"Error: no test specified\" && exit 1"
}
}