redact-object
Version:
51 lines (50 loc) • 1.32 kB
JSON
{
"name": "redact-object",
"version": "4.0.1",
"description": "Object redactor",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"typings": "dist/index.d.ts",
"scripts": {
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"build": "npm run build:clean && npm run build:transpile",
"build:clean": "rimraf dist/*",
"build:transpile": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "https://github.com/shaunburdick/redact-object"
},
"bugs": {
"url": "https://github.com/shaunburdick/redact-object/issues"
},
"keywords": [
"redactor"
],
"author": "Shaun Burdick <github@shaunburdick.com>",
"contributors": [
"Parsha Pourkhomami <parshap@gmail.com>"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash.isplainobject": "^4.0.9",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-shaunburdick": "^2.0.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"homepage": "https://github.com/shaunburdick/redact-object",
"dependencies": {
"lodash.isplainobject": "^4.0.6"
}
}