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