forked from CDCgov/TidyTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 920 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
{
"version": "0.7.0",
"description": "Uncompromisingly Flexible Phylogenetic Trees, Powered by D3.js",
"name": "tidytree",
"main": "dist/tidytree.js",
"scripts": {
"all": "npm run build && npm run minify && npm run doc",
"build": "rollup -c",
"demo": "npx http-server",
"dev": "npm run demo & npm run watch",
"doc": "npx documentation build src/main.js -f md -o docs/README.md",
"minify": "npx terser dist/tidytree.js --compress > dist/tidytree.min.js",
"version": "npm version patch",
"watch": "rollup -c --watch"
},
"author": "Tony Boyles <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cdcgov/TidyTree.git"
},
"dependencies": {
"d3": "^7.6.1",
"patristic": "github:CDCgov/patristic"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^1.32.1"
}
}