-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "seqalign",
"version": "1.0.6",
"description": "Collection of sequence alignment algorithms.",
"license": "MIT",
"keywords": [
"smith-waterman",
"needleman-wunsch",
"sequence alignment",
"string distance",
"string alignment"
],
"author": {
"name": "Lorenzo Cestaro",
"email": "[email protected]",
"url": "https://github.com/lorenzocestaro"
},
"repository": {
"type": "git",
"url": "https://github.com/lorenzocestaro/seqalign.git"
},
"main": "src/index.js",
"scripts": {
"lint": "prettier -l src/**/*.js && eslint src/**",
"prettify": "prettier --write src/**/*.js",
"test": "jest --verbose --coverage",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": ">=10",
"prettier": "2.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}