-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.89 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.89 KB
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
107
108
109
{
"name": "adhere-lib",
"version": "0.10.0",
"repository": {
"type": "git",
"url": "https://github.com/bbc/adhere-lib"
},
"description": "Library to allow playback of AD profile TTML2 files with a video element",
"private": true,
"main": "./dist/bin/js/bundle.js",
"type": "module",
"engines": {
"node": ">=18.0"
},
"resolve": {
"extensions": [
"",
".es6",
".js"
]
},
"exports": {
".": "./dist/bin/js/bundle.js",
"./VideoAudioHook": "./dist/bin/js/bundle.js",
"./TextPresenter": "./dist/bin/js/bundle.js",
"./Logger": "./dist/bin/js/bundle.js"
},
"scripts": {
"lint": "eslint --ext .js --ext .es6 ./*.js .",
"build": "webpack",
"start": "webpack-dev-server --open",
"watch": "webpack --watch",
"test": "npm run-script lint && nyc ava | tnyan",
"cucumber": "npm run-script lint && cucumber-js ./test/cucumber/features"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@ava/babel-preset-stage-4": "4.0.0",
"globals": "17.4.0",
"xml-query": "1.5.0",
"xml-reader": "2.4.3"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/plugin-transform-class-properties": "7.28.6",
"@babel/preset-env": "7.29.2",
"@babel/register": "7.28.6",
"@cucumber/cucumber": "12.7.0",
"@html-eslint/eslint-plugin": "0.58.1",
"@html-eslint/parser": "0.58.1",
"ava": "7.0.0",
"babel-loader": "10.1.1",
"babel-plugin-istanbul": "7.0.1",
"base64-js": "1.5.1",
"browser-env": "3.3.0",
"circular-dependency-plugin": "5.2.2",
"eslint": "9.39.4",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.32.0",
"nyc": "18.0.0",
"tap-nyan": "1.1.0",
"webpack": "5.105.4",
"webpack-cli": "7.0.2",
"webpack-dev-server": "5.2.3"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"@babel/register"
],
"failFast": false,
"tap": true,
"verbose": false,
"failWithoutAssertions": true,
"concurrency": 2
},
"nyc": {
"include": [
"src/**/*.es6"
],
"exclude": [
"test/**/*",
"./*.js",
"coverage/**/*",
"bin/**/*"
],
"reporter": [
"html",
"text",
"json-summary"
],
"require": [
"@babel/register"
],
"extension": [
".js"
],
"sourceMap": false,
"instrument": true,
"cache": false,
"check-coverage": false,
"lines": 75,
"all": true
}
}