-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "youtube-video-js",
"version": "4.0.1",
"description": "Easily play and control Youtube video using javascript",
"author": "Mark",
"homepage": "https://github.com/markcellus/youtube-video-js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/markcellus/youtube-video-js.git"
},
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": [
"video",
"youtube",
"youtube video",
"youtube video element",
"youtube web component"
],
"main": "dist/youtube-video.js",
"types": "dist/youtube.video.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "karma start karma.conf.js && npm run lint",
"test-server": "karma start karma.conf.js --single-run=false",
"build": "rm -rf dist/* && rollup -c && npm run banner",
"build:dev": "rm -rf examples/dist/* && rollup -c --watch --dev",
"banner": "banner-cli dist/*.js",
"start": "run-p build:dev serve",
"serve": "servor examples --reload --browse",
"lint": "npm run lint:scripts && npm run lint:format",
"lint:scripts": "eslint '**/*.{js,ts}'",
"lint:format": "prettier --check '**/*' --ignore-unknown"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-typescript": "^7.22.5",
"@open-wc/karma-esm": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.0",
"@types/youtube": "0.0.47",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"assert": "^2.0.0",
"banner-cli": "0.14.3",
"chai": "^4.2.0",
"eslint": "^8.43.0",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "^2.6.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"servor": "^4.0.2",
"sinon": "^15.2.0",
"typescript": "^5.1.5"
}
}