-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.24 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": "@vibbioinfocore/phyd3",
"version": "2.0.0-alpha.0",
"description": "PhyD3 phylogenetic tree viewer",
"main": "dist/index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@types/d3-hierarchy": "^3.1.0",
"@types/d3-selection": "^3.0.3",
"@types/d3-shape": "^3.1.0",
"@types/d3-zoom": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"ava": "^4.3.1",
"esbuild": "^0.15.5",
"eslint": "^8.22.0",
"typescript": "^4.7.4"
},
"scripts": {
"build": "node ./build.js",
"test": "ava",
"lint": "tsc --noEmit && eslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vibbits/phyd3.git"
},
"keywords": [
"phylogeny",
"tree",
"d3",
"js"
],
"author": "VIB Bioinformatics Core Facility <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vibbits/phyd3/issues"
},
"homepage": "https://phyd3.bioinformatics-core.sites.vib.be",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"d3-hierarchy": "^3.1.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.1.0",
"d3-zoom": "^3.0.0"
}
}