UNPKG

deep-shape-equals

Version:

`deep-shape-equals` is a library that allows you to see if two or more objects have the same shape. Meaning, the keys that they have are the same.

53 lines (52 loc) 1.07 kB
{ "name": "deep-shape-equals", "license": "MIT", "version": "0.1.2", "main": "dist/index.js", "repository": "https://github.com/rjerue/deep-shape-equals", "keywords": [ "schema", "shape", "shaping", "javascript", "node", "typescript", "deep", "object", "json" ], "module": "dist/deep-shape-equals.esm.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "stage": "pretty-quick --staged && tsdx build", "prepublishOnly": "yarn stage && git add dist" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "yarn stage" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "devDependencies": { "@types/jest": "^24.0.18", "husky": "^3.0.4", "prettier": "^1.18.2", "pretty-quick": "^1.11.1", "tsdx": "^0.8.0", "tslib": "^1.10.0", "typescript": "^3.5.3" } }