-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "videojs-abloop",
"version": "1.2.0",
"description": "A video.js plugin allowing looping of a section of video, with GUI and API interface",
"main": "videojs-abloop.js",
"scripts": {
"test": "mocha",
"devserver": "parcel parcelTest.html",
"build": "parcel build plugin.js --out-file videojs-abloop.min.js && parcel build plugin.js --no-minify --out-file videojs-abloop.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/phhu/videojs-abloop.git"
},
"keywords": [
"videojs-plugin",
"videojs"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/phhu/videojs-abloop/issues"
},
"homepage": "https://github.com/phhu/videojs-abloop#readme",
"dependencies": {},
"externals": {
"video.js": "videojs"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"geckodriver": "^3.0.2",
"http-shutdown": "^1.2.2",
"mocha": "^5.2.0",
"node-static": "^0.7.11",
"parcel-bundler": "^1.12.4",
"parcel-plugin-externals": "^0.3.3",
"selenium": "^2.20.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"video.js": "^7.8.4"
}
}