-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.8 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
71
72
73
74
75
76
77
{
"name": "sensitive-fields",
"description": "List of sensitive fields that should be masked, obfuscated, or purged for security purposes",
"version": "1.0.1",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/cabinjs/sensitive-fields/issues",
"email": "[email protected]"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"ava": "^5.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"underscore.string": "^3.3.6",
"xo": "0.56"
},
"engines": {
"node": ">=14"
},
"files": [
"index.json"
],
"homepage": "https://github.com/cabinjs/sensitive-fields",
"keywords": [
"bugsnag",
"cabin",
"complete",
"comprehensive",
"fields",
"list",
"log",
"log4j",
"logger",
"logging",
"logs",
"mask",
"masked",
"obfuscated",
"parse",
"parser",
"parsing",
"purge",
"raven",
"security",
"sensitive",
"sentry",
"timber",
"winston"
],
"license": "MIT",
"main": "index.json",
"repository": {
"type": "git",
"url": "https://github.com/cabinjs/sensitive-fields"
},
"scripts": {
"build": "node build",
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint && npm run build",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}