-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "@ver0/deep-equal",
"version": "0.0.0",
"description": "Deep values comparator for JS",
"keywords": [
"value",
"assert",
"equality",
"equal",
"deep-equal"
],
"repository": {
"type": "git",
"url": "https://github.com/ver0-project/deep-equal"
},
"bugs": {
"url": "https://github.com/ver0-project/deep-equal/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Anton Zinovyev <xog3@yandex.ru>",
"engines": {
"node": ">=20"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/is-equal.js",
"types": "dist/is-equal.d.ts",
"scripts": {
"build": "yarn build:clean && yarn tsc -p tsconfig.build.json",
"build:clean": "rimraf dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"benchmark": "vitest bench --run"
},
"packageManager": "yarn@4.12.0",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^7.5.1",
"@types/deep-equal": "^1.0.4",
"@ver0/eslint-config": "^1.6.0",
"@ver0/eslint-formatter-gha": "^1.0.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"deep-equal": "^2.2.3",
"dequal": "^2.0.3",
"eslint": "^10",
"eslint-config-xo": "^0.50.0",
"eslint-config-xo-typescript": "^9.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-no-use-extend-native": "^0.7.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^63.0.0",
"fast-deep-equal": "^3.1.3",
"globals": "^17.3.0",
"react-fast-compare": "^3.2.2",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}