This repository was archived by the owner on Dec 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"name": "graphic-smith-waterman",
"version": "2.0.1",
"description": "Javascript implementation of the Smith-Waterman algorithm.",
"license": "MIT",
"keywords": [
"smith-waterman",
"distance",
"graphic",
"sequence alignment"
],
"author": {
"name": "Lorenzo Cestaro",
"email": "cestaro.lorenzo@gmail.com",
"url": "https://github.com/lorenzocestaro"
},
"repository": {
"type": "git",
"url": "https://github.com/lorenzocestaro/graphic-smith-waterman.git"
},
"main": "src/index.js",
"scripts": {
"lint": "prettier -l src/**/*.js && eslint src/**",
"prettify": "prettier --write src/**/*.js",
"test": "jest --verbose --coverage",
"coverage": "jest --collectCoverageFrom=src/**.js --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"prettier": "2.1.2"
}
}