This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "ytpl",
"version": "0.0.0-development",
"description": "Simple package to resolve YouTube playlists - no strings attached.",
"keywords": [
"youtube",
"playlist",
"yt",
"video",
"videos",
"api",
"pl",
"scrape",
"pagination",
"promise"
],
"homepage": "https://github.com/TimeForANinja/node-ytpl#readme",
"bugs": {
"url": "https://github.com/TimeForANinja/node-ytpl/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/TimeForANinja/node-ytpl.git"
},
"license": "MIT",
"author": "Tobias Kutscha (https://github.com/TimeForANinja)",
"main": "./lib/main.js",
"types": "./typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"lint:typings": "tslint typings/index.d.ts",
"lint:typings:fix": "tslint --fix typings/index.d.ts",
"mocha": "mocha -- -t 16000 test/*-test.js",
"mocha:coverage": "mocha -- -t 16000 test/*-test.js --exclude test/e2e-test.js",
"nyc": "nyc --reporter=lcov npm run-script mocha",
"nyc:coverage": "nyc --reporter=lcov npm run-script mocha:coverage",
"test": "npm run-script nyc",
"test:coverage": "npm run-script nyc:coverage && codecov"
},
"dependencies": {
"miniget": "^4.2.2"
},
"devDependencies": {
"assert-diff": "^3.0.1",
"codecov": "^3.8.1",
"dtslint": "^4.0.8",
"eslint": "^7.23.0",
"mocha": "^8.3.2",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=8"
}
}