forked from SanichKotikov/relatives-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
52
53
{
"name": "relatives-tree",
"version": "2.0.1",
"description": "Calculates families and nodes positions for rendering a family tree",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"benchmarks": "tsc --project ./benchmarks/tsconfig.json && node ./benchmarks/index.js",
"start": "parcel docs/index.html --open",
"build": "tsc",
"size": "npm run build && size-limit",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SanichKotikov/relatives-tree.git"
},
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"lib",
"src",
"samples"
],
"keywords": [
"family-tree",
"family",
"relatives",
"node",
"connection"
],
"bugs": {
"url": "https://github.com/SanichKotikov/relatives-tree/issues"
},
"devDependencies": {
"@size-limit/preset-small-lib": "4.5.0",
"@types/jest": "25.2.1",
"@types/node": "13.13.5",
"benchmark": "2.1.4",
"jest": "25.5.4",
"parcel-bundler": "1.12.4",
"size-limit": "4.5.0",
"ts-jest": "25.5.1",
"typescript": "3.8.3"
},
"dependencies": {},
"size-limit": [
{
"path": "lib/index.js"
}
],
"homepage": "https://github.com/SanichKotikov/relatives-tree"
}