forked from radiovisual/get-video-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.03 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
82
83
84
85
86
87
88
89
90
91
{
"name": "get-video-id",
"version": "3.5.3",
"description": "Get the YouTube, Vimeo, Vine, Microsoft Steam, Dailymotion, TikTok or VideoPress video id from a url or embed string.",
"license": "MIT",
"repository": "radiovisual/get-video-id",
"main": "dist/get-video-id.js",
"module": "dist/get-video-id.esm.js",
"types": "./index.d.ts",
"author": {
"name": "Michael Wuergler",
"email": "[email protected]",
"url": "https://github.com/radiovisual"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test:post-build": "jest __tests__/builds/*",
"test": "npm run lint && c8 jest --runInBand --testPathIgnorePatterns='<rootDir>/__tests__/builds'",
"lint": "xo",
"lint:fix": "xo --fix",
"build": "rimraf dist && rollup -c rollup.config.js && npm run test && npm run test:post-build",
"prepublish": "npm run build"
},
"files": [
"index.js",
"dist/*",
"index.d.ts"
],
"keywords": [
"RegExp",
"regexp",
"iframe",
"embed",
"url",
"vine",
"vimeo",
"youtube",
"videopress",
"microsoft stream",
"microsoft",
"dailymotion",
"tiktok",
"shorts",
"stream",
"from",
"string",
"id",
"video",
"read",
"retrieve",
"fetch",
"parse",
"extract",
"get"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.1.0",
"c8": "^7.8.0",
"jest": "^27.1.0",
"jsdom": "^17.0.0",
"rimraf": "^3.0.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"xo": "^0.44.0"
},
"xo": {
"globals": [
"test",
"expect",
"describe"
]
},
"c8": {
"reporter": [
"text",
"lcov"
]
}
}