-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.14 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
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
81
82
83
84
85
{
"name": "@phyloref/phyx",
"version": "1.1.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://github.com/phyloref/phyx.js#readme",
"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 <[email protected]>",
"main": "src/index.js",
"bin": {
"phyx2owl": "bin/phyx2owl.js",
"resolve": "bin/resolve.js"
},
"scripts": {
"docs": "esdoc",
"generate-every-topology": "every-topology-testing/generate-topologies.js",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"**/*.json\"",
"phyx2owl": "node bin/phyx2owl.js",
"resolve": "node bin/resolve.js",
"pretest": "npm run lint",
"test": "mocha --recursive"
},
"dependencies": {
"jsonld": "^5.0.0",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"newick-js": "^1.2.1",
"retus": "^1.1.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@shinnn/eslint-config": "^7.0.0",
"ajv": "^6.12.2",
"chai": "^4.2.0",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.5",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^5.2.0",
"nodejs-file-downloader": "^4.1.1",
"yargs": "^15.3.1"
},
"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"
}
]
}
}