-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
83 lines (83 loc) · 2.65 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
{
"name": "downstream-electron",
"type": "commonjs",
"version": "0.7.0",
"description": "DOWNstream For Electron - an open-source plugin to use with Electron allowing encrypted MPEG-DASH and Smooth Streaming streams to be safely downloaded and stored locally on a user’s Windows or Mac computer.",
"keywords": [
"electron",
"download",
"offline",
"video",
"streaming",
"dash",
"dash+xml",
"smoothstreaming",
"smooth streaming",
"vnd.ms-sstr+xml",
"mpeg",
"drm",
"storage",
"files"
],
"main": "index.js",
"homepage": "https://castlabs.com/resources/downstream/",
"scripts": {
"update": "ncu -u",
"build": "NODE_OPTIONS=\"--openssl-legacy-provider\" && webpack",
"package": "npm pack",
"clean": "node ./bin/makefile.js clean",
"eslint": "./node_modules/.bin/eslint api",
"jsdoc": "./node_modules/.bin/jsdoc api -r --readme api/README.md --configure jsdoc.conf.json -d jsdoc",
"jsdoc_prv": "./node_modules/.bin/jsdoc api -r -p --readme api/README.md --configure jsdoc.conf.json -d jsdoc",
"jasmine": "(npm run jasmine_test || true) && npm run jasmine_report",
"jasmine_test": "./node_modules/jasmine-node/bin/jasmine-node units/ --junitreport --output tmp/units",
"jasmine_report": "./node_modules/junit-viewer/bin/junit-viewer --results=tmp/units --save=tmp/units_result.html",
"start": "electron app.js",
"travis-build": "npm run eslint && npm run jasmine_test && npm run build && npm run jsdoc && true"
},
"author": "castlabs GmbH",
"maintainers": [
{
"name": "Bartlomiej Makowski",
"email": "[email protected]"
},
{
"name": "Bartlomiej Obecny",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"babel-core": "6.26.3",
"babel-loader": "8.1.0",
"babel-preset-env": "1.7.0",
"clean-webpack-plugin": "4.0.0",
"electron": "git+https://github.com/castlabs/electron-releases.git#v26.3.0+wvcus",
"eslint": "^8.50.0",
"jasmine-node": "3.0.0",
"jquery": "^3.6.1",
"jsdoc": "4.0.2",
"jsdoc-webpack-plugin": "0.3.0",
"junit-viewer": "4.11.1",
"shaka-player": "4.7.0",
"webpack": "5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@xmldom/xmldom": "0.7.7",
"base64-js": "1.5.1",
"biguint-format": "1.0.2",
"cors": "2.8.5",
"express": "4.18.2",
"flake-idgen": "1.4.0",
"fs-extra": "11.1.1",
"get-folder-size": "^2.0.1",
"jsonfile": "6.1.0",
"mkdirp": "^3.0.1",
"moment": "2.29.4",
"underscore": "1.13.6",
"url-parse": "1.5.10"
}
}