-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.34 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
{
"name": "bakana",
"version": "3.0.1",
"description": "Backend for kana's single-cell analyses. This supports single or multiple samples, execution in Node.js or the browser, in-memory caching of results for iterative analyses, and serialization to/from file for redistribution.",
"type": "module",
"main": "main/index.js",
"browser": "browser/index.js",
"scripts": {
"test": "node --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --testTimeout=1000000 --runInBand --detectOpenHandles --forceExit",
"jsdoc": "npx jsdoc -r src README.md -d docs/built -c docs/jsdoc.config.json"
},
"repository": "github:kanaverse/bakana",
"homepage": "https://github.com/kanaverse/bakana#readme",
"bugs": "https://github.com/kanaverse/bakana/issues",
"keywords": [
"bioinformatics",
"single-cell",
"scRNA-seq"
],
"author": {
"name": "Aaron Lun",
"email": "[email protected]",
"url": "https://github.com/LTLA"
},
"license": "MIT",
"dependencies": {
"bioconductor": "^0.3.1",
"gesel": "^0.3.0",
"hash-wasm": "^4.9.0",
"jszip": "^3.10.1",
"pako": "^2.0.4",
"papaparse": "^5.3.2",
"scran.js": "^3.0.0"
},
"devDependencies": {
"docdash": "^2.0.1",
"jest": "^27.5.1",
"jsdoc": "^4.0.1",
"wasmarrays.js": "^0.1.0"
}
}