-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.62 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
{
"name": "splatch",
"version": "1.0.17",
"description": "A log/text sanitizer and masker",
"main": "bin/index.js",
"author": "Timi Aiyemo <[email protected]>",
"license": "MIT",
"types": "bin/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json && rsync -va bin/src/* bin/ && rm -rf bin/src",
"publish": "npm publish",
"npm:list": "npm pack --dry-run",
"npm:publish": "npm publish --access=public",
"dry:publish": "npm publish --dry-run",
"test": "mocha",
"test:watch": "yarn test --watch",
"lint": "eslint ./src --no-cache",
"lint:fix": "yarn lint -- --fix"
},
"devDependencies": {
"@stylistic/eslint-plugin": "1.7.0",
"@types/mocha": "10.0.6",
"@types/node": "20.11.28",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unused-imports": "3.1.0",
"expect": "29.7.0",
"mocha": "10.3.0",
"tsx": "4.7.1",
"typescript": "5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozzbie/splatch.git"
},
"keywords": [
"mask",
"sanitize",
"node.js",
"npm",
"package",
"mask",
"data",
"datamask",
"maskdata",
"hide",
"protect",
"email",
"card",
"phone",
"uuid",
"string",
"sensitive",
"jwt",
"token"
],
"bugs": {
"url": "https://github.com/cozzbie/splatch/issues"
},
"homepage": "https://github.com/cozzbie/splatch#readme",
"bin": {
"splatch": "bin/index.js"
}
}