-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.75 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
{
"name": "passport-spid",
"version": "2.0.4",
"description": "Passport strategy for SPID authentication",
"repository": {
"type": "git",
"url": "git+https://github.com/random42/passport-spid.git"
},
"author": {
"name": "Roberto Sero",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"spid",
"passport",
"saml",
"saml2",
"authentication",
"italia",
"italy",
"digital",
"identity"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**"
],
"scripts": {
"dev": "ts-node-dev --respawn --inspect=0.0.0.0:9229 -- test/main.ts",
"prebuild": "rimraf dist",
"build": "tsc",
"prepare": "run-s build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "bash ./test.sh"
},
"dependencies": {
"@node-saml/node-saml": "^4.0.0",
"@node-saml/passport-saml": "^4.0.1",
"@xmldom/xmldom": "^0.8.3",
"dayjs": "^1.11.5",
"fast-xml-parser": "^4.0.8",
"lodash.difference": "^4.5.0",
"xml-crypto": "^2.1.3"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.0.0",
"@types/xml-crypto": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"axios": "^1.1.3",
"dotenv": "^16.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.3",
"fs-extra": "^10.1.0",
"ioredis": "^5.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8"
}
}