-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
30 lines (30 loc) · 864 Bytes
/
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
{
"name": "widevine-license-proxy-server-nodejs",
"version": "1.0.0",
"description": "Create a reverse proxy licensing server in NodeJS using Express and attach addons like API Rate Limiting, Authentication/Authorization and a lot more.",
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WINOFFRG/widevine-license-proxy-server-nodejs.git"
},
"keywords": [
"NodeJS",
"Widevine",
"Proxy",
"Server"
],
"author": "@WINOFFRG (Rohan Gupta)",
"license": "ISC",
"bugs": {
"url": "https://github.com/WINOFFRG/widevine-license-proxy-server-nodejs/issues"
},
"homepage": "https://github.com/WINOFFRG/widevine-license-proxy-server-nodejs#readme",
"dependencies": {
"axios": "^0.21.4",
"cors": "^2.8.5",
"express": "^4.17.1"
}
}