forked from balajikris/ms-rest-jsauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "ms-rest-jsauth",
"author": {
"name": "Microsoft Corporation",
"email": "[email protected]",
"url": "https://github.com/Azure/azure-sdk-for-node"
},
"version": "0.1.0",
"description": "Runtime used by Javascript client libraries for Azure",
"tags": [
"microsoft",
"autorest",
"clientruntime"
],
"keywords": [
"microsoft",
"autorest",
"clientruntime"
],
"main": "./dist/lib/AuthenticationManager.js",
"typings": "./typings/AuthenticationManager.d.ts",
"license": "MIT",
"dependencies": {
"adal-angular": "^1.0.15",
"@types/adal": "^1.0.27"
},
"devDependencies": {
"@types/node": "^8.0.14",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"typescript": "^2.4.1",
"webpack": "^3.3.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-node/",
"repository": {
"type": "git",
"url": "[email protected]:Azure/azure-sdk-for-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-sdk-for-node/issues"
},
"scripts": {
"build": "npm -s run-script tsc && npm -s run-script tsc-server && webpack --config ./sample/client/webpack.config.js",
"start": "node ./dist/sample/server.js",
"tsc": "tsc -p tsconfig.json",
"tsc-server": "tsc -p ./sample/server/tsconfig.server.json"
}
}