-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "deep-equal-check",
"version": "1.1.0",
"description": "Ultra-fast deep equality checker with comprehensive TypeScript support",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir dist/types",
"build:esm": "tsc -p tsconfig.build.json --module es2020 --outDir dist/esm",
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/cjs",
"clean": "rimraf dist/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"benchmark": "ts-node --project benchmark/tsconfig.json benchmark/run-benchmark.ts",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"deep-equal",
"equality",
"compare",
"typescript",
"performance",
"fast",
"comparison",
"objects",
"arrays"
],
"author": "Lakshmikanth Vallampati <kanth.vallampati@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opensly/deep-equal-check.git"
},
"bugs": {
"url": "https://github.com/opensly/deep-equal-check/issues"
},
"homepage": "https://github.com/opensly/deep-equal-check#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/lodash": "^4.17.20",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"deep-eql": "^5.0.2",
"eslint": "^8.37.0",
"fast-deep-equal": "^3.1.3",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"rimraf": "^4.4.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}