forked from EBI-Metagenomics/mgnify-sourmash-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "snipe-sourmash-component",
"version": "0.4.0",
"description": "A web component to select FastA file and generate sourmash signatures locally.",
"module": "dist/snipe-sourmash-component.js",
"main": "dist/snipe-sourmash-component.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"start": "webpack serve --mode development --open",
"eslint": "eslint src/*",
"eslint:fix": "eslint src/* --fix",
"prettier": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mgnify",
"sourmash",
"sketch",
"webelement"
],
"author": "Gustavo A. Salazar",
"license": "ISC",
"devDependencies": {
"@types/jszip": "^3.4.0",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"css-loader": "^7.1.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"html-webpack-plugin": "5.3.2",
"prettier": "2.4.0",
"style-loader": "^4.0.0",
"ts-loader": "9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.95.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.15.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"bl": "5.0.0",
"bootstrap": "^5.3.3",
"jszip": "^3.10.1",
"lit": "2.0.0-rc.2",
"lit-css-loader": "1.0.1",
"process": "0.11.10",
"sourmash": "0.13.1",
"util": "0.12.4"
}
}