forked from epoberezkin/fast-deep-equal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
{
"name": "@descript/fast-deep-equal",
"version": "2.2.0",
"description": "Fast deep equal",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"eslint": "eslint src",
"test": "npm run eslint && jest --coverage",
"build": "tsc -b tsconfig.json",
"benchmark": "tsx src/benchmark/benchmark.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
},
"keywords": [
"fast",
"equal",
"deep-equal"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/fast-deep-equal/issues"
},
"homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
"devDependencies": {
"@types/benchmark": "latest",
"@types/deep-equal": "latest",
"@types/expect": "^24.3.0",
"@types/jest": "latest",
"@types/lodash": "latest",
"@types/mocha": "^10.0.0",
"@types/node": "^20",
"@types/ramda": "latest",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"benchmark": "^2.1.4",
"coveralls": "^2.13.1",
"deep-eql": "latest",
"deep-equal": "latest",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"jest": "latest",
"json-joy": "^16.25.0",
"lodash": "latest",
"nano-equal": "latest",
"pre-commit": "^1.2.2",
"ramda": "latest",
"shallow-equal-fuzzy": "latest",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"ts-mocha": "^10.0.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"files": [
"dist",
"src"
]
}