-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "popyt",
"version": "7.1.1",
"description": "A very easy to use promise-based Youtube Data v3 API.",
"homepage": "https://brandonbothell.github.io/popyt/",
"main": "out/index.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "mocha --exit --require ts-node/register/transpile-only --require source-map-support/register --recursive \"./test/*.spec.ts\" --timeout 10000",
"test:oauth": "mocha --exit --require ts-node/register/transpile-only --require source-map-support/register --recursive \"./test/oauth/*.spec.ts\" --timeout 10000",
"test:all": "mocha --exit --require ts-node/register/transpile-only --require source-map-support/register --recursive \"./test/**/*.spec.ts\" --timeout 10000",
"coverage": "tsc && cross-env NODE_ENV=test nyc --reporter=json yarn test",
"coverage:all": "tsc && cross-env NODE_ENV=test nyc --reporter=json yarn test:all",
"coverage:allhtml": "tsc && cross-env NODE_ENV=test nyc --reporter=lcov yarn test:all",
"coverage:html": "tsc && cross-env NODE_ENV=test nyc --reporter=lcov yarn test",
"coverage:text": "tsc && cross-env NODE_ENV=test nyc --reporter=text yarn test",
"docs:build:config": "yarn workspace docusaurus build:config",
"docs:build": "yarn workspace docusaurus build",
"docs:publish": "yarn workspace docusaurus deploy",
"docs:serve": "yarn workspace docusaurus serve",
"docs:test": "yarn workspace docusaurus start",
"lint": "eslint src/**/*.ts test/**/*.ts",
"build": "tsc --build --clean && tsc"
},
"nyc": {
"include": "src"
},
"workspaces": [
"docusaurus"
],
"author": {
"name": "Brandon Bothell",
"email": "bothellbrandon@gmail.com"
},
"license": "Unlicense",
"keywords": [
"youtube",
"youtube search",
"youtube api",
"youtube videos",
"youtube channels",
"promise",
"promise based",
"no dependencies",
"caching"
],
"devDependencies": {
"@googleapis/youtube": "11.0.1",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.10",
"@types/gulp": "4.0.16",
"@types/gulp-sourcemaps": "0.0.37",
"@types/merge2": "1.4.3",
"@types/mocha": "10.0.3",
"@types/node": "20.9.0",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
"chai": "4.3.10",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"eslint": "8.53.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-unused-imports": "3.0.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"resolutions": {
"node-preload": "0.2.0"
},
"engines": {
"node": "20.9.0"
},
"repository": {
"url": "https://github.com/brandonbothell/popyt.git"
},
"packageManager": "yarn@3.6.2"
}