-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
110 lines (110 loc) · 3.26 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@azure/ms-rest-browserauth",
"author": {
"name": "Microsoft Corporation",
"email": "[email protected]",
"url": "https://github.com/Azure/ms-rest-browserauth"
},
"version": "1.0.2",
"description": "Browser-specific authentication library for Azure services",
"tags": [
"isomorphic",
"browser",
"javascript",
"node",
"microsoft",
"autorest",
"clientruntime"
],
"keywords": [
"isomorphic",
"browser",
"javascript",
"node",
"microsoft",
"autorest",
"clientruntime"
],
"main": "./dist/msAuth.js",
"module": "./es/lib/index.js",
"types": "./es/lib/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"es/lib/**/*.js",
"es/lib/**/*.js.map",
"es/lib/**/*.d.ts",
"es/lib/**/*.d.ts.map",
"lib/**/*.ts",
"LICENSE",
"README.md"
],
"license": "MIT",
"dependencies": {
"@azure/ms-rest-azure-env": "^2.0.0",
"@azure/ms-rest-js": "^2.0.4",
"adal-angular": "^1.0.17",
"tslib": "^1.9.3"
},
"devDependencies": {
"@ts-common/azure-js-dev-tools": "^0.4.9",
"@types/adal-angular": "^1.0.1",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.0",
"@types/should": "^13.0.0",
"@types/webpack": "^4.1.3",
"@types/webpack-dev-middleware": "^2.0.1",
"@types/xml2js": "^0.4.3",
"abortcontroller-polyfill": "^1.1.9",
"express": "^4.16.3",
"glob": "^7.1.2",
"mocha": "^5.1.1",
"mocha-chrome": "^1.1.0",
"npm-run-all": "^4.1.2",
"rollup": "^0.67.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-visualizer": "^0.9.2",
"semver": "^5.5.0",
"should": "13.2.3",
"shx": "^0.3.2",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^3.1.1",
"uglify-js": "^3.4.9",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.1.2",
"yarn": "^1.6.0"
},
"homepage": "https://github.com/Azure/ms-rest-browserauth",
"repository": {
"type": "git",
"url": "[email protected]:Azure/ms-rest-browserauth.git"
},
"bugs": {
"url": "http://github.com/Azure/ms-rest-browserauth/issues"
},
"scripts": {
"build": "run-p build:scripts build:lib",
"build:scripts": "tsc -p ./.scripts/",
"build:lib": "run-s build:tsc build:rollup build:minify",
"build:tsc": "tsc -p tsconfig.es.json",
"build:rollup": "rollup -c rollup.config.js",
"build:minify": "uglifyjs -c -m --comments --source-map \"content='./dist/msAuth.js.map'\" -o ./dist/msAuth.min.js ./dist/msAuth.js",
"test": "npm run build && run-p test:tslint test:unit",
"test:tslint": "tslint -p . -c tslint.json --exclude \"./test/**/*.ts\"",
"test:unit": "mocha ./test/**/*.ts",
"test:server": "ts-node -T testserver",
"prepack": "npm install && npm run build",
"publish-preview": "mocha --no-colors && shx rm -rf dist/test && node ./.scripts/publish",
"local": "ts-node ./.scripts/local.ts",
"preview": "ts-node ./.scripts/preview.ts",
"latest": "ts-node ./.scripts/latest.ts",
"check:packagejsonversion": "ts-node ./.scripts/checkPackageJsonVersion.ts"
},
"sideEffects": false
}