-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 965 Bytes
/
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
{
"name": "redactyl.js",
"version": "1.6.0",
"description": "Redact sensitive information from JSON for logging",
"main": "index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "nyc mocha test/*.spec.js",
"test:report": "nyc report --reporter=lcov",
"benchmark": "node test/redactyl.perf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcjpisani/redactyl.js.git"
},
"keywords": [
"redact",
"sensitive",
"information",
"scrub",
"secure",
"node"
],
"author": "Robert Pisani",
"license": "MIT",
"bugs": {
"url": "https://github.com/rcjpisani/redactyl.js/issues"
},
"homepage": "https://github.com/rcjpisani/redactyl.js#readme",
"devDependencies": {
"@types/benchmark": "^2.1.2",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sinon": "^8.1.1",
"typescript": "^4.9.3"
}
}