remove-sensitive-info
Version:
npm package to remove all sensitive info from data passed
57 lines (56 loc) • 1.91 kB
JSON
{
"name": "remove-sensitive-info",
"version": "1.0.0",
"description": "npm package to remove all sensitive info from data passed",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- --require babel-core/register --require babel-polyfill --recursive",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdkpavankumar/remove-sensitive-info.git"
},
"keywords": [
"sensitive",
"pii",
"javascript",
"nodejs"
],
"author": "P D K Pavan Kumar <pavankumar8545@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pdkpavankumar/remove-sensitive-info/issues"
},
"homepage": "https://github.com/pdkpavankumar/remove-sensitive-info#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"istanbul": "^1.0.0-alpha",
"mocha": "^5.0.0",
"rimraf": "^2.6.2"
},
"directories": {
"test": "test"
}
}