-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 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
{
"name": "proseqviewer",
"version": "1.1.9",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/BioComputingUP/ProSeqViewer"
},
"homepage": "https://biocomputingup.github.io/ProSeqViewer-documentation/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rfv dist && tsc",
"postbuild": "cp -r src/assets dist/",
"wp": "npx webpack",
"postwp": "sed -i 's/^exports\\.\\(ProSeqViewer = ProSeqViewer;\\)$/window\\.\\1/' dist/sqv-bundle.js",
"buildall": "rm -rfv dist && npm run build && npm run postbuild && npm run wp && npm run postwp",
"start": "npm run build -- -w"
},
"files": [
"dist/**"
],
"author": "Martina Bevilacqua",
"license": "ISC",
"description": "TypeScript library to visualize annotation on single sequences and multiple sequence alignments",
"devDependencies": {
"@types/node": "14.14.13",
"typescript": "4.2.4",
"webpack": "5.32.0",
"webpack-cli": "4.6.0"
}
}