forked from Zod-/jsVideoUrlParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.42 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
{
"name": "js-video-url-parser",
"version": "0.2.7",
"description": "A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Zod-/jsVideoUrlParser.git"
},
"keywords": [
"parser",
"YouTube",
"Vimeo",
"Dailymotion",
"Twitch",
"CanalPlus",
"Youku",
"Coub",
"Wistia",
"SoundCloud"
],
"author": {
"name": "Julian Hangstörfer",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Zod-/jsVideoUrlParser/issues"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.1",
"babel-preset-minify": "^0.2.0",
"eslint": "^4.16.0",
"eslint-plugin-jest": "^21.7.0",
"jest": "^22.1.4",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-minify-es": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.2"
},
"scripts": {
"test": "./node_modules/.bin/jest --coverage",
"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 run test && npm run lint && npm run build"
}
}