-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "@vibbioinfocore/phyd3-example-app",
"version": "1.0.3",
"description": "An example app demonstrating the use of PhyD3",
"source": "src/index.js",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "parcel serve src/index.html",
"build": "esbuild src/index.js --bundle --minify --format=esm --outfile=dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vibbits/phyd3-example-app.git"
},
"author": "VIB Bioinformatics Core Facility <bits@vib.be>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vibbits/phyd3-example-app/issues"
},
"files": [
"dist/**/*.js"
],
"homepage": "https://github.com/vibbits/phyd3-example-app#readme",
"devDependencies": {
"esbuild": "^0.16.16",
"parcel": "^2.8.2"
},
"dependencies": {
"@vibbioinfocore/phyd3": "^2.0.0-alpha.0",
"@vibbioinfocore/phyd3-parser-compat": "^0.0.2",
"@vibbioinfocore/phylio": "^1.0.1"
}
}