forked from davidmarkclements/fast-redact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "fast-redact",
"version": "3.1.2",
"description": "very fast object redaction",
"main": "index.js",
"scripts": {
"test": "tap test",
"posttest": "standard index.js 'lib/*.js' 'example/*.js' benchmark/index.js test/index.js | snazzy",
"cov": "tap --cov test",
"cov-ui": "tap --coverage-report=html test",
"ci": "tap --cov --100 test",
"bench": "node benchmark"
},
"keywords": [
"redact",
"censor",
"performance",
"performant",
"gdpr",
"fast",
"speed",
"serialize",
"stringify"
],
"author": "David Mark Clements <[email protected]>",
"license": "MIT",
"devDependencies": {
"fastbench": "^1.0.1",
"pino-noir": "^2.2.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^12.5.2"
},
"engines": {
"node": ">=6"
},
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmarkclements/fast-redact.git"
},
"bugs": {
"url": "https://github.com/davidmarkclements/fast-redact/issues"
},
"homepage": "https://github.com/davidmarkclements/fast-redact#readme"
}