UNPKG

1.55 kBJSONView Raw
1{
2 "name": "js-video-url-parser",
3 "version": "0.3.1",
4 "description": "A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls",
5 "main": "lib/index.js",
6 "browser": "dist/jsVideoUrlParser.js",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/Zod-/jsVideoUrlParser.git"
10 },
11 "keywords": [
12 "parser",
13 "YouTube",
14 "Vimeo",
15 "Dailymotion",
16 "Twitch",
17 "CanalPlus",
18 "Youku",
19 "Coub",
20 "Wistia",
21 "SoundCloud"
22 ],
23 "author": {
24 "name": "Julian Hangstörfer",
25 "email": "jhangstoerfer@gmail.com"
26 },
27 "license": "MIT",
28 "bugs": {
29 "url": "https://github.com/Zod-/jsVideoUrlParser/issues"
30 },
31 "devDependencies": {
32 "@babel/core": "^7.3.4",
33 "@babel/preset-env": "^7.3.4",
34 "babel-core": "^7.0.0-bridge.0",
35 "babel-eslint": "^8.2.3",
36 "babel-preset-minify": "^0.2.0",
37 "eslint": "^4.19.1",
38 "eslint-plugin-jest": "^21.15.1",
39 "jest": "^24.1.0",
40 "rollup": "^0.54.1",
41 "rollup-plugin-babel": "^4.3.2",
42 "rollup-plugin-commonjs": "^8.4.1",
43 "rollup-plugin-minify-es": "^1.1.1",
44 "rollup-plugin-node-resolve": "^3.3.0"
45 },
46 "scripts": {
47 "test": "./node_modules/.bin/jest --coverage --config jestconfig.js",
48 "build": "./node_modules/.bin/rollup -c rollup.config.js",
49 "lint": "./node_modules/.bin/eslint . --fix",
50 "lintdryfix": "./node_modules/.bin/eslint . --fix-dry-run",
51 "all": "npm run test && npm run lint && npm run build"
52 }
53}