-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "@dolbyio/dolbyio-rest-apis-client",
"version": "5.1.0",
"description": "Node.JS wrapper for the Dolby.io REST APIs",
"main": "dist/index.js",
"scripts": {
"build": "tsc && babel ./src --out-dir dist --extensions .ts",
"docs": "typedoc",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/DolbyIO/dolbyio-rest-apis-client-node.git"
},
"author": "Fabien Lavocat <[email protected]>",
"license": "MIT",
"keywords": [
"nodejs",
"api",
"sdk",
"rest",
"rest-api",
"webrtc",
"dolbyio"
],
"files": [
"dist/*",
"README.md"
],
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/follow-redirects": "^1.14.4",
"@types/node": "^20.14.5",
"babel-plugin-inline-replace-variables": "^1.3.1",
"prettier": "^3.3.2",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.30",
"typescript": "^5.4.5"
},
"dependencies": {
"follow-redirects": "^1.15.6",
"js-logger": "^1.6.1"
}
}