-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.29 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
{
"name": "html5-video-plugins",
"version": "1.0.0",
"description": "Video Tech Plugins for the Ooyala HTML5 player",
"engines": {
"node": ">=8.11.3"
},
"dependencies": {
"aws-sdk": "^2.1.49"
},
"scripts": {
"build": "gulp",
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"build:future": "webpack --mode development",
"build-prod": "webpack --mode production",
"start": "webpack-dev-server",
"lint": "echo",
"analysis": "echo"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"babelify": "^9.0.0",
"browserify": "16.2.2",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-require-jsdoc-except": "^1.3.0",
"eslint-plugin-standard": "^4.0.0",
"expect.js": "0.3.1",
"file-lister": "^1.1.0",
"gulp": "3.9.1",
"gulp-filenames": "^4.0.1",
"gulp-rename": "1.4.0",
"gulp-shell": "0.6.5",
"gulp-sourcemaps": "2.6.4",
"gulp-uglify": "3.0.1",
"gulp-uglify-es": "^1.0.4",
"gulp-util": "3.0.8",
"jest-cli": "23.4.2",
"jquery": "3.3.1",
"jsdoc": "^3.3.3",
"sinon": "^6.0.0",
"uglify": "^0.1.5",
"underscore": "1.9.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-shell-plugin": "^0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ooyala/html5-video-plugins.git"
},
"author": "Ooyala",
"license": "ISC",
"bugs": {
"url": "https://github.com/ooyala/html5-video-plugins/issues"
},
"homepage": "https://github.com/ooyala/html5-video-plugins",
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/tests/setup.js",
"modulePathIgnorePatterns": [
"/build/",
"/tests/utils/",
"/node_modules/"
],
"rootDir": "",
"unmockedModulePathPatterns": [],
"roots": [
"<rootDir>"
],
"testRegex": "(/tests/unit/.*|(\\.|/)(test))\\.js?$",
"collectCoverage": true,
"testURL": "http://localhost/"
}
}