-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "deep6",
"version": "1.1.4",
"description": "deep6 is a no-dependency ES6 mini-library for advanced deep equivalence, unification, and cloning of JavaScript structures. Supports extensible pattern matching, circular reference handling, Map, Set, typed arrays, symbols, and property descriptors.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./*": "./src/*"
},
"scripts": {
"start": "node tests/server.js --trace",
"test": "node tests/tests.js",
"debug": "node --inspect-brk tests/tests.js",
"ts-check": "tsc --noEmit",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git://github.com/uhop/deep6.git"
},
"keywords": [
"deep",
"deep equivalence",
"deep equality",
"deep compare",
"unification",
"unify",
"pattern matching",
"pattern match",
"wildcard",
"clone",
"deep clone",
"deep cloning",
"copy",
"deep copy",
"traversing",
"traverse",
"walk",
"logical variables",
"es6",
"no dependencies"
],
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
"funding": "https://github.com/sponsors/uhop",
"license": "BSD-3-Clause",
"files": [
"/src",
"llms.txt",
"llms-full.txt"
],
"devDependencies": {
"prettier": "^3.8.1",
"typescript": "^6.0.2"
}
}