-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
94 lines (94 loc) · 2.23 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
92
93
94
{
"name": "html5-skin",
"version": "0.0.1",
"description": "HTML5 skin over an Ooyala video player",
"keywords": [
"html5",
"react",
"ooyala",
"video",
"player"
],
"main": "html5-skin.js",
"scripts": {
"build": "",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ooyala/html5-skin.git"
},
"dependencies": {
"classnames": "*",
"deepmerge": "^1.3.0",
"lodash.debounce": "4.0.3",
"lodash.values": "4.1.0",
"react": "0.14.7",
"react-dom": "0.14.7",
"react-scrollbar": "0.4.0",
"screenfull": "3.0.0"
},
"devDependencies": {
"browserify": "13.0.0",
"bulk-require": "^1.0.0",
"bulkify": "^1.4.2",
"git-rev": "0.2.1",
"graceful-fs": "*",
"gulp": "3.9.1",
"gulp-connect": "^2.3.1",
"gulp-open": "^1.0.0",
"gulp-rename": "*",
"gulp-replace": "0.5.4",
"gulp-sass": "2.0.4",
"gulp-shell": "0.4.2",
"gulp-sourcemaps": "1.5.2",
"gulp-uglify": "1.1.0",
"gulp-util": "3.0.7",
"jest-cli": "0.4.18",
"jquery": "1.8.3",
"jsdoc": "^3.3.3",
"jsdoc-jsx": "^0.1.0",
"react-addons-test-utils": "0.14.7",
"react-tools": "*",
"reactify": "1.1.1",
"sinon": "^2.1.0",
"underscore": "1.3.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "3.7.0"
},
"author": "Ooyala",
"contributors": [
"Aldi Gunawan <[email protected]>",
"Timothy Chang <[email protected]>",
"Jeoffrey Mendez <[email protected]>",
"Dustin Preuss <[email protected]"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/ooyala/html5-skin/issues"
},
"homepage": "https://github.com/ooyala/html5-skin",
"jest": {
"modulePathIgnorePatterns": [
"/build/",
"/node_modules/"
],
"persistModuleRegistryBetweenSpecs": true,
"preprocessorIgnorePatterns": [
"/node_modules/"
],
"rootDir": "",
"scriptPreprocessor": "scripts/jest/preprocessor.js",
"setupEnvScriptFile": "scripts/jest/environment.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"react"
],
"testPathDirs": [
"<rootDir>"
],
"testDirectoryName": "tests",
"collectCoverage": true
}
}