-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
executable file
·59 lines (59 loc) · 1.5 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
{
"name": "js-video-url-parser",
"version": "0.5.1",
"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",
"Facebook",
"Vimeo",
"Dailymotion",
"Twitch",
"CanalPlus",
"Youku",
"Coub",
"Wistia",
"SoundCloud",
"Ted",
"Tiktok",
"Loom"
],
"author": {
"name": "Julian Hangstörfer",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Zod-/jsVideoUrlParser/issues"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-preset-minify": "^0.5.1",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^26.6.3",
"jest-expect-message": "^1.0.2",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^3.9.7"
},
"scripts": {
"test": "jest --coverage --config jestconfig.js",
"build": "rollup -c rollup.config.js",
"lint": "eslint . --fix",
"lintdryfix": "eslint . --fix-dry-run",
"all": "npm audit && npm run test && npm run lint && npm run build"
}
}