-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 914 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
{
"name": "neighbor-joining",
"version": "1.0.4",
"description": "Neighbor Joining library for NPM.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "babel -d dist/ src/ --module=common",
"prepublish": "npm run compile"
},
"keywords": [
"phylogeny",
"neighbor joining",
"biojs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/biosustain/neighbor-joining.git"
},
"author": "Maciej Korzepa <maciejkorzepa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/biosustain/neighbor-joining/issues"
},
"homepage": "https://github.com/biosustain/neighbor-joining#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "6.4.5",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-1": "^6.5.0"
},
"dependencies": {
"timsort": "^0.2.1"
}
}