mirror: A fast canonicalisation utility for stable object equality
787 B
46 lines
1{
2 "version": "0.2.2",
3 "name": "@mr/object-identity",
4 "license": "MIT",
5 "exports": "./lib/mod.ts",
6 "tasks": {
7 "build": "deno run -A scripts/build.ts",
8 "bench": "deno run -A scripts/bench.ts"
9 },
10 "imports": {
11 "@std/assert": "jsr:@std/assert@^1",
12 "@std/path": "jsr:@std/path@^1",
13 "fast-check": "npm:fast-check@^4"
14 },
15 "nodeModulesDir": "auto",
16 "minimumDependencyAge": "P3D",
17 "lock": false,
18 "lint": {
19 "rules": {
20 "exclude": [
21 "no-var",
22 "prefer-const",
23 "no-cond-assign",
24 "no-inner-declarations",
25 "no-explicit-any",
26 "no-fallthrough"
27 ]
28 }
29 },
30 "fmt": {
31 "lineWidth": 100,
32 "singleQuote": true,
33 "useTabs": true
34 },
35 "exclude": [
36 "npm",
37 "coverage"
38 ],
39 "publish": {
40 "include": [
41 "lib/mod.ts",
42 "license",
43 "readme.md"
44 ]
45 }
46}