forked from Zod-/jsVideoUrlParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.58 KB
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
{
"name": "js-video-url-parser",
"version": "0.4.3",
"description": "A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls",
"main": "lib/index.js",
"browser": "dist/jsVideoUrlParser.js",
"types": "lib",
"repository": {
"type": "git",
"url": "https://github.com/Zod-/jsVideoUrlParser.git"
},
"keywords": [
"parser",
"YouTube",
"Vimeo",
"Dailymotion",
"Twitch",
"CanalPlus",
"Youku",
"Coub",
"Wistia",
"SoundCloud",
"Ted",
"Tiktok"
],
"author": {
"name": "Julian Hangstörfer",
"email": "jhangstoerfer@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Zod-/jsVideoUrlParser/issues"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"dtslint": "^3.6.14",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.2.3",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^3.9.7"
},
"scripts": {
"test": "./node_modules/.bin/jest --coverage --config jestconfig.js",
"build": "./node_modules/.bin/rollup -c rollup.config.js",
"lint": "./node_modules/.bin/eslint . --fix",
"lintdryfix": "./node_modules/.bin/eslint . --fix-dry-run",
"all": "npm audit && npm run test && npm run lint && npm run dtslint && npm run build",
"dtslint": "dtslint lib"
}
}