-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "@openveo/player",
"version": "8.0.0",
"description": "OpenVeo player to play a video with associated images and chapters",
"keywords": [
"openveo",
"veo-labs",
"player",
"vimeo",
"html",
"embed",
"chapters",
"synchronization",
"video"
],
"homepage": "https://github.com/veo-labs/openveo-player",
"bugs": {
"url": "https://github.com/veo-labs/openveo-player/issues"
},
"license": "AGPL-3.0",
"author": "Veo-Labs <[email protected]> (http://www.veo-labs.com/)",
"repository": {
"type": "git",
"url": "https://github.com/veo-labs/openveo-player.git"
},
"devDependencies": {
"@openveo/api": "^8.0.2",
"angular": "1.5.11",
"angular-animate": "1.5.11",
"angular-cookies": "1.5.11",
"angular-mocks": "1.5.11",
"angular-route": "1.5.11",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"eslint": "^7.32.0",
"eslint-plugin-node": "^11.1.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-ng-html2js-preprocessor": "^1.0.0",
"mocha": "^9.1.1",
"pre-commit": "^1.2.2",
"roboto-fontface": "^0.10.0",
"uglify-js": "^3.14.2",
"video.js": "^7.15.4"
},
"scripts": {
"build": "npm run build:clean && ./scripts/build.js production",
"build:development": "./scripts/build.js",
"build:clean": "npx ovRemove ./build ./dist",
"doc": "mkdocs build -c -d \"./site/$(echo $npm_package_version)\"",
"doc:clean": "npx ovRemove ./site",
"doc:deploy": "npx ovDeployGithubPages \"site/$(echo $npm_package_version)\"",
"lint": "npx eslint \"*.js\" \"src/**/*.js\" \"scripts/**/*.js\"",
"postpublish": "npm run doc && npm run doc:deploy",
"prepack": "npm run build",
"test": "npm run build && npx karma start ./karmaConf.js",
"watch": "npm run build:development && npx ovWatch -d ./src -c build:development"
},
"precommit": [
"lint",
"test"
],
"engines": {
"node": ">=16.3.0",
"npm": ">=7.15.1"
}
}