You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

109 lines
2.9 KiB

{
"_from": "shallow-equal@^1.0.0",
"_id": "shallow-equal@1.2.1",
"_inBundle": false,
"_integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==",
"_location": "/shallow-equal",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "shallow-equal@^1.0.0",
"name": "shallow-equal",
"escapedName": "shallow-equal",
"rawSpec": "^1.0.0",
"saveSpec": null,
"fetchSpec": "^1.0.0"
},
"_requiredBy": [
"/ant-design-vue"
],
"_resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz",
"_shasum": "4c16abfa56043aa20d050324efa68940b0da79da",
"_spec": "shallow-equal@^1.0.0",
"_where": "D:\\code\\template-vue-antd\\node_modules\\ant-design-vue",
"author": {
"name": "Misha Moroshko",
"email": "michael.moroshko@gmail.com"
},
"bugs": {
"url": "https://github.com/moroshko/shallow-equal/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Minimalistic shallow equality check for arrays/objects",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-plugin-mocha": "^6.2.2",
"esm": "^3.2.25",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rollup": "^1.27.8"
},
"files": [
"dist",
"arrays",
"objects"
],
"homepage": "https://github.com/moroshko/shallow-equal#readme",
"keywords": [
"shallow",
"equality",
"compare",
"comparison",
"shallowequal",
"shallow-equal",
"shallowequals",
"shallow-equals",
"isshallowequal",
"is-shallow-equal",
"equal",
"equals",
"isequal",
"is-equal",
"object",
"array",
"check",
"test"
],
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"name": "shallow-equal",
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/*.js"
],
"exclude": [
"src/*.test.js"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/moroshko/shallow-equal.git"
},
"scripts": {
"build": "npm run build:objects && npm run build:arrays && rm -rf dist && npm run build:cjs && npm run build:esm",
"build:arrays": "rm -rf arrays && rollup -f cjs -i src/arrays.js -o arrays/index.js",
"build:cjs": "rollup -f cjs -i src/index.js -o dist/index.cjs.js",
"build:esm": "rollup -f esm -i src/index.js -o dist/index.esm.js",
"build:objects": "rm -rf objects && rollup -f cjs -i src/objects.js -o objects/index.js",
"lint": "eslint src",
"postversion": "git push && git push --tags",
"prebuild": "npm run lint && npm test",
"prepare": "npm run build",
"preversion": "npm run prebuild",
"test": "nyc --require esm mocha 'src/*.test.js'"
},
"version": "1.2.1"
}