forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.71 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
{
"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.17",
"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"
},
"beachball": {
"disallowedChangeTypes": [
"major"
]
},
"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",
"build:modules": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m es6 --outDir lib-es6 && npm run build:webpack",
"build:modules:watch": "tsc --project tsconfig.build.json -m es6 --outDir lib-es6 --watch",
"build": "npm run clean && npm run build:modules",
"build:all": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "cd ../../ && npm run lint:core",
"lint:fix": "npm run lint -- -- --fix",
"build:webpack": "webpack",
"prepack": "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",
"@types/handlebars": "4.0.33",
"@types/jest": "^27.4.0",
"@types/js-base64": "^2.3.1",
"@types/node": "^11.13.4",
"@types/sinon": "^7.0.11",
"@types/uuid": "^3.4.4",
"ajv": "6.12.3",
"babel-polyfill": "^6.26.0",
"dotenv": "^8.2.0",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"handlebars": "^4.7.7",
"husky": "^1.3.1",
"jest": "^27.4.7",
"js-yaml": "^3.13.1",
"jshint": "^2.9.7",
"phantomjs-polyfill": "0.0.2",
"rimraf": "^3.0.0",
"shx": "^0.3.4",
"sinon": "^7.3.1",
"source-map-support": "^0.5.13",
"ssri": "^8.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^27.1.2",
"ts-loader": "^5.3.1",
"ts-node": "^10.9.1",
"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"
}
}