forked from SanichKotikov/react-family-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 974 Bytes
/
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
{
"name": "react-family-tree",
"version": "1.0.3",
"description": "React component that renders a family tree",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"start": "tsc --watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donburks/react-family-tree.git"
},
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"src"
],
"keywords": [
"react",
"react-component",
"component",
"family-tree",
"family",
"relatives"
],
"bugs": {
"url": "https://github.com/donburks/react-family-tree/issues"
},
"peerDependencies": {
"@types/react": ">=16",
"react": ">=16"
},
"devDependencies": {
"typescript": "4.7.4"
},
"dependencies": {
"relatives-tree": "git://github.com/donburks/relatives-tree.git"
},
"homepage": "https://github.com/donburks/react-family-tree"
}