-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.75 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
107
{
"name": "adhere-lib",
"version": "0.0.9",
"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": "commonjs",
"engines": {
"node": ">=12.12.0"
},
"resolve": {
"extensions": [
"",
".es6",
".js"
]
},
"exports": {
".": "./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",
"xml-query": "1.5.0",
"xml-reader": "2.4.3"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/eslint-parser": "7.15.4",
"@babel/preset-env": "7.15.6",
"@babel/register": "7.15.3",
"@cucumber/cucumber": "7.3.1",
"ava": "3.15.0",
"babel-loader": "8.2.2",
"babel-plugin-istanbul": "6.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"base64-js": "1.5.1",
"browser-env": "3.3.0",
"eslint": "7.32.0",
"eslint-config-walmart": "2.2.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.25.2",
"nyc": "15.1.0",
"tap-nyan": "1.1.0",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.2.1"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"@babel/register"
],
"failFast": false,
"tap": true,
"verbose": false,
"no-cache": true,
"failWithoutAssertions": true,
"concurrency": 2,
"browser": true
},
"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
}
}