-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.51 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.51 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
89
90
{
"name": "@redactpii/node",
"version": "1.0.17",
"type": "module",
"description": "Zero dependencies, blazing fast regex-based PII redaction with optional compliance dashboard integration. The modern fork of the abandoned 786k-download library.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"packageManager": "pnpm@10.20.0",
"scripts": {
"build": "del lib && tsc -p tsconfig.build.json --pretty && rollup -c",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"prepublishOnly": "pnpm run verify_all && pnpm run build",
"verify_all": "pnpm run typecheck && pnpm test && pnpm run test_prettier",
"verify_all_strict": "pnpm run typecheck && pnpm run lint && pnpm test && pnpm run test_prettier",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"test_prettier": "prettier './+(src|test)/**/*.+(js|ts|tsx)' --list-different",
"prettier": "prettier './+(src|test)/**/*.+(js|ts|tsx)' --write",
"release": "node scripts/release.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/wrannaman/redactpii-node.git"
},
"homepage": "https://redactpii.com",
"author": "Andrew Pierno - RedactPII Team",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"keywords": [
"pii",
"redaction",
"privacy",
"gdpr",
"compliance",
"data-protection",
"security",
"redactor",
"anonymization"
],
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "^4.0.8",
"del-cli": "^7.0.0",
"eslint": "8.57.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"rollup": "^4.53.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md}": [
"prettier --write"
]
}
}