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 66
/
package.json
62 lines (62 loc) · 1.57 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": "ytsr",
"version": "0.0.0-development",
"description": "Simple package to search YouTube - no strings attached.",
"keywords": [
"youtube",
"search",
"yt",
"ytsearcher",
"api",
"playlist",
"channel",
"video",
"scrape",
"pagination",
"promise"
],
"homepage": "https://github.com/TimeForANinja/node-ytsr#readme",
"bugs": {
"url": "https://github.com/TimeForANinja/node-ytsr/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/TimeForANinja/node-ytsr.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.2",
"codecov": "^3.8.1",
"dtslint": "^4.0.8",
"eslint": "^7.23.0",
"mocha": "^10.2.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=8"
}
}