-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.91 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.91 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@phyloref/phyx",
"version": "1.2.1",
"description": "Classes and methods that help read and manipulate components of Phyloreference Exchange (PHYX) format files",
"keywords": [
"phylogenetics",
"phylogeny",
"phylogenetic definitions",
"clade definitions"
],
"homepage": "https://www.phyloref.org/phyx.js/",
"bugs": {
"url": "https://github.com/phyloref/phyx.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phyloref/phyx.js.git"
},
"license": "MIT",
"author": "Gaurav Vaidya <gaurav@ggvaidya.com>",
"main": "src/index.js",
"bin": {
"phyx2owl": "bin/phyx2owl.mjs",
"resolve": "bin/resolve.mjs"
},
"scripts": {
"docs": "esdoc",
"generate-every-topology": "every-topology-testing/generate-topologies.js",
"lint": "biome check",
"phyx2owl": "node bin/phyx2owl.mjs",
"resolve": "node bin/resolve.mjs",
"posttest": "npm run lint",
"test": "mocha --recursive"
},
"dependencies": {
"jsonld": "^9.0.0",
"lodash": "^4.17.23",
"moment": "^2.30.1",
"newick-js": "^1.2.1",
"retus": "^1.1.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"chai": "^6.2.2",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.5",
"esdoc-standard-plugin": "^1.0.0",
"mocha": "^11.7.5",
"nodejs-file-downloader": "^4.13.0"
},
"esdoc": {
"source": "./src",
"destination": "./docs",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"manual": {
"files": [
"./CHANGELOG.md",
"./tutorials/Introduction.md"
]
},
"test": {
"source": "./test/",
"includes": [
"\\.js$"
]
}
}
},
{
"name": "esdoc-node"
}
]
}
}