-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.33 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.33 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
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
{
"name": "data-sanitization",
"version": "1.0.1",
"description": "Sanitization library for masking or removing sensitive data.",
"keywords": [
"data-sanitization",
"logging",
"mask",
"masking",
"phi",
"pii",
"redact",
"redaction",
"sanitization",
"sanitize",
"secrets",
"sensitive-data",
"typescript"
],
"homepage": "https://github.com/ioncache/data-sanitization#readme",
"bugs": {
"url": "https://github.com/ioncache/data-sanitization/issues"
},
"license": "MIT",
"author": "Mark Jubenville <ioncache@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ioncache/data-sanitization.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "yarn clean && tsc -p tsconfig.build.json",
"clean": "rm -rf dist coverage && find . -maxdepth 1 -name '*.tsbuildinfo' -delete",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "yarn lint:code && yarn lint:actions && yarn lint:yaml",
"lint:actions": "github-actionlint",
"lint:ci": "yarn lint:code --format=github && yarn lint:actions && yarn lint:yaml",
"lint:code": "oxlint",
"lint:fix": "oxlint --fix",
"lint:yaml": "yamllint \".github/**/*.yml\" \".github/**/*.yaml\" \".yarnrc.yml\"",
"prepare": "husky",
"prepack": "yarn build",
"release": "node scripts/release.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.0",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.9.0",
"@vitest/coverage-v8": "^4.1.6",
"conventional-changelog": "^7.1.0",
"github-actionlint": "^1.7.12",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"query-string": "^9.3.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.6",
"yaml-lint": "^1.7.0",
"yargs": "^18.0.0"
},
"engines": {
"node": ">=22.22.1"
},
"volta": {
"node": "22.22.3",
"yarn": "4.15.0"
},
"packageManager": "yarn@4.15.0"
}