forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.02 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
{
"name": "msal",
"author": {
"name": "Microsoft",
"email": "[email protected]",
"url": "https://www.microsoft.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"version": "1.4.8",
"description": "Microsoft Authentication Library for js",
"keywords": [
"implicit",
"js",
"AAD",
"msal",
"oauth"
],
"main": "./lib-commonjs/index.js",
"module": "./lib-es6/index.js",
"types": "./lib-commonjs/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"cdn": "npm run build && npm run cdn:upload && npm run cdn:sri",
"cdn:upload": "node ./cdn-upload.js",
"cdn:sri": "node ./cdn-sri.js",
"clean": "shx rm -rf dist lib-commonjs lib-es6",
"clean:coverage": "rimraf ../../.nyc_output/*",
"build:modules": "tsc && tsc -m es6 --outDir lib-es6 && npm run build:webpack",
"build:modules:watch": "tsc -m es6 --outDir lib-es6 --watch",
"build": "npm run clean && npm run build:modules",
"build:all": "npm run build",
"test": "mocha",
"test:coverage": "nyc mocha",
"test:coverage:only": "npm run clean:coverage && npm run test:coverage",
"lint": "cd ../../ && npm run lint:core",
"lint:fix": "npm run lint -- -- --fix",
"build:webpack": "webpack",
"prepack": "npm run lint && npm test && npm run build"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@azure/storage-blob": "^12.2.1",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@babel/register": "^7.7.0",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"@types/chai": "^4.1.7",
"@types/handlebars": "4.0.33",
"@types/js-base64": "^2.3.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@types/sinon": "^7.0.11",
"@types/uuid": "^3.4.4",
"ajv": "6.6.1",
"awesome-typescript-loader": "^3.2.3",
"babel-plugin-istanbul": "^5.2.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"handlebars": "^4.7.6",
"husky": "^1.3.1",
"istanbul-instrumenter-loader": "^3.0.1",
"js-yaml": "^3.13.1",
"jsdom": "14.0.0",
"jsdom-global": "3.0.2",
"jshint": "^2.9.7",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"phantomjs-polyfill": "0.0.2",
"rimraf": "^3.0.0",
"shx": "^0.2.2",
"sinon": "^7.3.1",
"source-map-support": "^0.5.13",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"ssri": "^8.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^5.3.1",
"ts-node": "^8.0.3",
"tslint": "^5.8.0",
"typescript": "^3.2.1",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-middleware": "^3.4.0"
},
"directories": {
"test": "test"
}
}