@enkidevs/deepmapper
Version:
Utility for mapping arbitrary structures
65 lines (64 loc) • 1.52 kB
JSON
{
"name": "@enkidevs/deepmapper",
"version": "2.0.0",
"description": "Utility for mapping arbitrary structures",
"scripts": {
"check-branch": "enkidevs-assert-restricted-branch",
"format": "prettier --write 'src/**/*.js'",
"lint:ci": "CI=true eslint . --ignore-path .gitignore --quiet",
"lint": "eslint . --ignore-path .gitignore",
"prepare": "npm run lint",
"test:ci": "NODE_ENV=test CI=true jest --coverage",
"test": "NODE_ENV=test jest --notify"
},
"main": "src/index.js",
"files": [
"src/index.js"
],
"homepage": "https://github.com/enkidevs/deepmapper",
"repository": {
"type": "git",
"url": "https://github.com/enkidevs/deepmapper.git"
},
"engines": {
"node": "^12.19.0"
},
"keywords": [
"deep",
"map",
"mapper",
"immutable",
"nested"
],
"author": "Nemanja Stojanovic <nemanjacoder@gmail.com>",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js}": [
"npm run check-branch",
"npm run format",
"npm run lint",
"git add"
]
},
"license": "MIT",
"dependencies": {
"lodash.foreach": "^4.5.0",
"lodash.isobject": "^3.0.2"
},
"devDependencies": {
"@enkidevs/assert-restricted-branch": "^1.0.2",
"@enkidevs/eslint-config-backend": "^9.0.0",
"eslint": "^7.2.0",
"husky": "^7.0.1",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.0.1"
}
}