-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
executable file
·52 lines (52 loc) · 1.37 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
{
"title": "HybridTvViewer",
"name": "hybridtvviewer",
"description": "Extension to deal with HbbTV,CE-HTML,BML,OHTV webpages",
"version": "0.6.0",
"scripts": {
"run-test": "npm run test-html-coverage",
"run-firefox-extension": "echo 'Running Firefox extension ...'; web-ext lint; web-ext run",
"package-firefox-extension": "web-ext build --artifacts-dir=zips -i=plugins -i=test -i=docs -i=manifest_chrome.json -i=package*",
"test": "mocha test/*.js",
"test-with-coverage": "nyc --reporter=text mocha",
"test-html-coverage": "nyc --reporter=html mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/karl-rousseau/HybridTvViewer.git"
},
"keywords": [
"js",
"html",
"hbbtv",
"bml",
"ohtv",
"dvb",
"mpeg",
"dash",
"ci+"
],
"author": "Karl Rousseau",
"license": "MIT",
"bugs": {
"url": "https://github.com/karl-rousseau/HybridTvViewer/issues"
},
"\\": "below are Firefox and NodeJS features",
"homepage": "https://github.com/karl-rousseau/HybridTvViewer",
"permissions": {
"private-browsing": "true",
"cross-domain-content": []
},
"engines": {
"firefox": ">=48",
"node": ">=10.0.0"
},
"devDependencies": {
"jsdom": "^16.5.0",
"mocha": "^8.3.0",
"should": "^13.1.3",
"sinon-chrome": "^2.3.2",
"xmldom": "^0.5.0",
"web-ext": "^5.5.0"
}
}