forked from SanichKotikov/relatives-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 KB
/
package.json
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
{
"name": "relatives-tree",
"version": "3.2.0",
"description": "Calculates families and nodes positions for rendering a family tree",
"main": "lib/index.js",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"benchmarks": "tsc --project ./benchmarks/tsconfig.json && node ./benchmarks/index.js",
"start": "vite",
"build": "tsc",
"size": "size-limit",
"test": "uvu -r tsm __tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SanichKotikov/relatives-tree.git"
},
"bugs": {
"url": "https://github.com/SanichKotikov/relatives-tree/issues"
},
"homepage": "https://github.com/SanichKotikov/relatives-tree",
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"lib",
"src",
"samples"
],
"keywords": [
"family-tree",
"family",
"relatives",
"node",
"connection"
],
"devDependencies": {
"@size-limit/preset-small-lib": "7.0.8",
"benchmark": "2.1.4",
"size-limit": "7.0.8",
"tsm": "2.2.1",
"typescript": "4.7.4",
"uvu": "0.5.6",
"vite": "3.0.0"
},
"size-limit": [
{
"path": "lib/index.js"
}
]
}