-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "@nanopore/fast-ctc-decode",
"version": "0.3.6",
"description": "Blitzing fast CTC decoding library.",
"main": "pkg/fast_ctc_decode.js",
"license": "LICENSE.md",
"scripts": {
"build": "wasm-pack build --target web --release && node post-install.js",
"serve": "serve -s pkg",
"test": "jest --runInBand --detectOpenHandles",
"test:watch": "npm test --watch"
},
"files": [
"pkg"
],
"repository": {
"type": "git",
"url": "https://github.com/nanoporetech/fast-ctc-decode.git"
},
"author": "Chris Seymour",
"homepage": "https://github.com/nanoporetech/fast-ctc-decode#readme",
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-jest": "^27.3.1",
"babel-plugin-transform-import-meta": "^2.1.0",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-puppeteer": "^6.0.0",
"puppeteer": "^13.5.2",
"serve": "^12.0.1"
},
"jest": {
"verbose": true,
"resetMocks": false,
"preset": "jest-puppeteer",
"collectCoverageFrom": [
"tests/**/*.{js}",
"!node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -15
}
}
},
"dependencies": {
"wasm-pack": "^0.10.1"
}
}