-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "weblogin-auth-sdk",
"version": "2.0.5",
"description": "Provides all the functionality needed to easily integrate your Javascript web applications with Stanford SAML federated identity provider.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"lint": "eslint \"src/**/*.{ts,tsx.js,jsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --quiet --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SU-SWS/weblogin-auth-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SU-SWS/weblogin-auth-sdk/issues"
},
"homepage": "https://github.com/SU-SWS/weblogin-auth-sdk#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cookie": "^0.5.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jose": "^4.9.3",
"passport": "^0.6.0",
"passport-saml": "^3.2.4",
"url": "^0.11.3",
"util": "^0.12.5"
},
"devDependencies": {
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"ts-loader": "^9.4.4",
"typescript": "^4.8.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.10.0"
}
}