-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
106 lines (106 loc) · 3.06 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
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@contently/videojs-annotation-comments",
"version": "2.1.1",
"description": "A plugin for video.js to add support for timeline moment/range comments and annotations",
"repository": "[email protected]:contently/videojs-annotation-comments.git",
"main": "build/videojs-annotation-comments.cjs.js",
"style": "build/css/annotations.css",
"files": [
"build"
],
"scripts": {
"test": "gulp test",
"integration": "echo open in chrome: http://localhost:3004/mocha/features/index.html",
"watch": "gulp watch",
"build": "gulp build",
"lint": "eslint ./src"
},
"author": "Evan Carothers (@ecaroth) & Jack Pope (@jackpope)",
"copyright": "Copyright Contently, Inc. <https://www.contently.com/>",
"license": "Apache-2.0",
"devDependencies": {
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/git": "^7.0.18",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-script": "^1.1.0",
"babelify": "^7.3.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"es6-object-assign": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.1.0",
"gulp-babel": "^6.1.3",
"gulp-cli": "^1.4.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^3.2.0",
"gulp-declare": "^0.3.0",
"gulp-delete-lines": "0.0.7",
"gulp-handlebars": "^5.0.2",
"gulp-insert": "^0.5.0",
"gulp-mocha": "^4.3.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^0.5.4",
"gulp-sass": "^3.2.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-strip-comments": "^2.5.2",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.8",
"gulp-webserver": "^0.9.1",
"gulp-wrap": "^0.13.0",
"handlebars": "^4.7.6",
"ie-array-find-polyfill": "^1.1.0",
"mocha": "^6.2.0",
"moment": "^2.24.0",
"prettier": "^2.0.2",
"pump": "^1.0.3",
"semantic-release": "^15.13.21",
"underscore": "^1.9.1",
"video.js": "^7.6.5",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.1.2",
"watchify": "^3.11.1"
},
"peerDependencies": {
"jquery": "^3",
"video.js": "^7"
},
"babel": {
"presets": [
"es2015"
]
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"yarn.lock"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"jquery": "^3.6.3",
"mitt": "^1.2.0"
}
}