-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "media-services-node-sample",
"author": "Microsoft Corporation",
"contributors": [
"John Deutscher <johndeu@microsoft.com>"
],
"version": "0.2.0",
"description": "A sample to demonstrate using the media services api using Nodejs, created using Node.js version 12.x",
"keywords": [
"node",
"microsoft",
"azure",
"typescript"
],
"main": "index.ts",
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^1.0.4",
"@azure/core-lro": "^2.2.3",
"@azure/event-hubs": "^5.7.0-beta.1",
"@azure/eventgrid": "^4.5.0",
"@azure/identity": "^2.0.1",
"@azure/storage-blob": "^12.4.0",
"fs": "0.0.1-security",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"njwt": "^1.0.0",
"path": "^0.12.7",
"readline-sync": "^1.4.10",
"util": "^0.12.3",
"uuid": "^8.3.2",
"whatwg-url": "^8.4.0"
},
"devDependencies": {
"@azure/arm-mediaservices": "^13.1.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/readline-sync": "^1.4.3",
"@types/uuid": "^8.3.0",
"@types/whatwg-url": "^8.0.0",
"dotenv": "^8.0.0",
"eslint": "^7.21.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"homepage": "https://github.com/Azure-Samples/bing-search-node",
"repository": {
"type": "git",
"url": "https://github.com/Azure-Samples/bing-search-node"
},
"bugs": {
"url": "https://github.com/azure/azures-sdk-for-node/issues"
},
"scripts": {
"build": "npm run build:tsc",
"build:tsc": "tsc -p ./tsconfig.json"
}
}