-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "entitree-flex",
"version": "0.4.1",
"description": "Flexible Tree layout supporting ancestors, descendants and side nodes in all 4 orientations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"browser": "open playground/index.html && watchify playground/source.js -p [ tsify ] -o playground/bundle.js",
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "yarn build",
"test": "jest"
},
"files": [
"/dist"
],
"author": "Orlando Groppo <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/codeledge/entitree-flex"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@svgdotjs/svg.js": "^3.1.2",
"@types/jest": "^27.4.1",
"babel-jest": "^28.0.0",
"jest": "^28.0.0",
"tsify": "^5.0.4",
"typescript": "^4.6.3",
"watchify": "^4.0.0"
},
"keywords": [
"tree",
"dendrogram",
"treemap",
"layout",
"graph",
"children",
"parents",
"family",
"pedigree"
]
}