-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.48 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
70
{
"name": "deep-redact",
"version": "1.0.7",
"description": "Deeply redact sensitive data from JS primitives",
"repository": {
"type": "git",
"url": "git+https://github.com/moshie/deep-redact.git"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"release": "pnpm build && changeset publish",
"coverage": "vitest run --coverage",
"test": "vitest --typecheck",
"lint": "biome lint --write src/",
"format": "biome format src/",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/"
],
"keywords": [
"blacklist",
"sensitive",
"redaction",
"redactor",
"secrets",
"censor",
"redact",
"deep",
"data",
"json"
],
"bugs": {
"url": "https://github.com/moshie/deep-redact/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/moshie/deep-redact",
"author": {
"name": "David Hewitt",
"email": "[email protected]",
"url": "https://cv.moshie.dev/"
},
"license": "MIT",
"dependencies": {
"is-url": "^1.2.4",
"qs": "^6.13.0",
"relaxed-json": "^1.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@biomejs/biome": "1.9.4",
"@types/is-url": "^1.2.32",
"@types/qs": "^6.9.16",
"@types/relaxed-json": "^1.0.4",
"@vitest/coverage-v8": "2.1.4",
"lefthook": "^1.8.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}