forked from stytchauth/samlshield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
59
60
61
62
{
"name": "@stytch/samlshield",
"version": "0.4.0",
"description": "A Node.js library for linting and validating SAML responses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "SamlShield",
"license": "Apache-2.0",
"keywords": [
"saml",
"xml",
"security",
"validation",
"linting"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write .",
"prepublishOnly": "yarn build",
"hooks": "yarn dlx husky install",
"prepare": "husky"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"xpath": "^0.0.34"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"jest": "^29.3.1",
"prettier": "^3.2.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"files": [
"dist/",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/test-dist/"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}