{ "name": "unherit", "version": "1.1.0", "description": "Clone a constructor without affecting the super-class", "license": "MIT", "keywords": [ "clone", "super", "class", "constructor" ], "files": [ "index.js" ], "dependencies": { "inherits": "^2.0.1", "xtend": "^4.0.1" }, "repository": "https://github.com/wooorm/unherit", "bugs": "https://github.com/wooorm/unherit/issues", "author": "Titus Wormer (http://wooorm.com)", "contributors": [ "Titus Wormer (http://wooorm.com)" ], "devDependencies": { "browserify": "^13.0.1", "esmangle": "^1.0.1", "nyc": "^8.1.0", "remark-cli": "^1.0.0", "remark-comment-config": "^4.0.0", "remark-github": "^5.0.0", "remark-lint": "^4.0.0", "remark-validate-links": "^4.0.0", "tape": "^4.0.0", "xo": "^0.16.0" }, "scripts": { "build-md": "remark . --quiet --frail", "build-bundle": "browserify index.js --bare -s unherit > unherit.js", "build-mangle": "esmangle unherit.js > unherit.min.js", "build": "npm run build-md && npm run build-bundle && npm run build-mangle", "lint": "xo", "test-api": "node test", "test-coverage": "nyc --reporter lcov tape test.js", "test": "npm run build && npm run lint && npm run test-coverage" }, "xo": { "space": true, "rules": { "guard-for-in": "off" }, "ignores": [ "unherit.js" ] }, "remarkConfig": { "output": true, "plugins": { "comment-config": null, "github": null, "lint": { "heading-increment": false }, "validate-links": null }, "settings": { "bullet": "*" } } }