-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 2.26 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
{
"name": "html5-ad-plugins",
"version": "0.0.1",
"description": "Ooyala ad manager plugins",
"engines": {
"node": ">=8.11.3"
},
"keywords": [
"ad manager",
"ads",
"ooyala"
],
"repository": {
"type": "git",
"url": "https://github.com/ooyala/html5-ad-plugins"
},
"dependencies": {
"aws-sdk": "^2.1.49",
"mime": "^2.3.1"
},
"devDependencies": {
"browserify": "16.2.2",
"babelify": "^9.0.0",
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"file-lister": "^1.1.0",
"gulp": "3.9.1",
"gulp-filenames": "^4.0.1",
"gulp-rename": "1.3.0",
"gulp-shell": "0.6.5",
"gulp-sourcemaps": "2.6.4",
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
"hazmat": "*",
"jest-cli": "23.4.1",
"jquery": "3.3.1",
"jsdom": "11.11.0",
"mocha": "~5.2.0",
"underscore": "1.9.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0"
},
"author": "Ooyala",
"contributors": [
"Peter Iliev <[email protected]>",
"Greg Frank <[email protected]>",
"Angie Israni <[email protected]>",
"Alexander Eng <[email protected]>"
],
"license": "ISC",
"homepage": "https://github.com/ooyala/html5-analytics-plugins",
"scripts": {
"test": "jest",
"lint": "echo",
"build": "echo",
"build-prod": "echo",
"start": "echo",
"analysis": "echo"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"modulePathIgnorePatterns": [
"/build/",
"/node_modules/",
"/html5-common/"
],
"transformIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/test/unit-tests/.*|(\\.|/)(test))\\.js?$",
"collectCoverage": true,
"collectCoverageOnlyFrom": {
"<rootDir>/js/framework/AnalyticsConstants.js": true,
"<rootDir>/js/framework/AnalyticsFramework.js": true,
"<rootDir>/js/framework/InitAnalyticsNamespace.js": true,
"<rootDir>/js/plugins/AnalyticsPluginTemplate.js": true,
"<rootDir>/js/plugins/omniture.js": true,
"<rootDir>/js/plugins/Nielsen.js": true,
"<rootDir>/js/plugins/conviva.js": true,
"<rootDir>/js/plugins/googleAnalytics.js": true,
"<rootDir>/js/plugins/iq.js": true
}
}
}