-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 985 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
{
"name": "@apitraffic/data-redaction",
"version": "0.0.6",
"description": "Data redaction library used for both client and server side data redactions.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"pub-patch": "npm version patch --force && git push origin main && npm publish",
"pub-minor": "npm version minor --force && git push origin main && npm publish",
"pub-major": "npm version major --force && git push origin main && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apitraffic/apitraffic-node-data-redaction.git"
},
"author": "ApiTraffic.io <sdk@apitraffic.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apitraffic/apitraffic-node-data-redaction/issues"
},
"homepage": "https://github.com/apitraffic/apitraffic-node-data-redaction#readme",
"dependencies": {
"@hackylabs/deep-redact": "^2.1.0"
},
"devDependencies": {
"jest": "^29.3.1"
}
}