-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 KB
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
{
"version": "1.0.0-beta",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "16 || 18 || 20"
},
"repository": {
"type": "git",
"url": "git://github.com/Azure-Samples/ms-identity-javascript-nodejs-tutorial.git"
},
"scripts": {
"build": "rollup -c --strictDeprecations --bundleConfigAsCjs",
"build:watch": "rollup -c --watch --strictDeprecations --bundleConfigAsCjs",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"docs": "typedoc"
},
"name": "msal-node-wrapper",
"author": "Microsoft",
"module": "dist/msal-node-wrapper.esm.js",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.4",
"@types/sinon": "^10.0.14",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"rollup": "^3.20.1",
"sinon": "^15.0.4",
"supertest": "^6.1.6",
"ts-jest": "^29.0.5",
"tslib": "^1.10.0",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"dependencies": {
"@azure/msal-node": "^1.17.3",
"axios": "^0.28.0",
"express": "^4.18.2",
"express-session": "^1.17.3"
}
}