-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 946 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
36
37
38
39
{
"name": "biomsa",
"version": "0.3.3",
"description": "Multiple Sequence Alignment for the Browser",
"homepage": "https://github.com/ppillot/biomsalign",
"main": "dist/biomsa.js",
"module": "dist/biomsa.esm.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"watch": "rollup -cw",
"dist": "NODE_ENV=production rollup -c && rm -r dist && mkdir -p dist && cp build/biomsa.* dist/. && cp build/index.d.ts dist/."
},
"keywords": [
"sequence",
"alignment",
"DNA",
"protein",
"clustal",
"multiple",
"minimizer"
],
"author": "ppillot",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^26.0.14",
"jest": "^29.7.0",
"rollup": "^4.9.2",
"ts-jest": "^29.1.1",
"tslib": "^2.3.1",
"typescript": "^5.3.3"
}
}