UNPKG

is-equal

Version:

Are these two values conceptually equal?

92 lines (90 loc) 2.3 kB
{ "name": "is-equal", "version": "1.5.3", "description": "Are these two values conceptually equal?", "author": "Jordan Harband", "license": "MIT", "main": "index.js", "scripts": { "pretest": "npm run --silent lint", "test": "npm run --silent tests-only", "posttest": "npm run --silent security", "tests-only": "npm run --silent test:native && npm run --silent test:why && npm run --silent test:shimmed && npm run --silent test:corejs", "test:native": "node test/native", "test:why": "node test/why", "test:shimmed": "node test/shimmed", "test:corejs": "node test/corejs", "coverage": "covert test/native test/why", "coverage-quiet": "covert test/native.js --quiet", "lint": "npm run --silent jscs && npm run --silent eslint", "jscs": "jscs *.js test/*.js", "eslint": "eslint *.js test/*.js", "security": "nsp check" }, "repository": { "type": "git", "url": "git://github.com/ljharb/is-equal.git" }, "bugs": { "url": "https://github.com/ljharb/is-equal/issues" }, "homepage": "https://github.com/ljharb/is-equal", "keywords": [ "equal", "is", "compare", "comparison", "equality" ], "dependencies": { "has": "^1.0.1", "is-arrow-function": "^2.0.3", "is-boolean-object": "^1.0.0", "is-callable": "^1.1.3", "is-date-object": "^1.0.1", "is-generator-function": "^1.0.3", "is-number-object": "^1.0.3", "is-regex": "^1.0.3", "is-string": "^1.0.4", "is-symbol": "^1.0.1", "object.entries": "^1.0.3" }, "devDependencies": { "tape": "^4.5.1", "covert": "^1.1.0", "jscs": "^3.0.3", "foreach": "^2.0.5", "object.entries": "^1.0.3", "make-arrow-function": "^1.1.0", "make-generator-function": "^1.1.0", "semver": "^5.1.0", "eslint": "^2.10.2", "@ljharb/eslint-config": "^4.0.1", "nsp": "^2.4.0", "replace": "^0.3.0", "es6-shim": "^0.35.1", "core-js": "^2.4.0" }, "testling": { "files": "test/native.js", "browsers": [ "iexplore/6.0..latest", "firefox/3.0..6.0", "firefox/15.0..latest", "firefox/nightly", "chrome/4.0..10.0", "chrome/20.0..latest", "chrome/canary", "opera/10.0..12.0", "opera/15.0..latest", "opera/next", "safari/4.0..latest", "ipad/6.0..latest", "iphone/6.0..latest", "android-browser/4.2" ] }, "engines": { "node": ">= 0.4" } }