-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.12 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
{
"name": "smith-walterman-score",
"version": "1.0.2",
"description": "This algorithm allows us to compute the alignment of two strings.",
"main": "app/smith-waterman-score.js",
"repository": {
"url": "https://github.com/A1c0/smith-walterman-score",
"type": "git"
},
"author": "Alexandre CONTASSOT* <[email protected]>",
"license": "MIT",
"keywords": [
"smith-waterman",
"compare-objects",
"alignment-algorithm"
],
"homepage": "https://github.com/A1c0/smith-walterman-score",
"bugs": "https://github.com/A1c0/smith-walterman-score/issues",
"files": [
"lib/*.js",
"app/*.js"
],
"scripts": {
"code-style": "xo",
"start": "node index.js",
"test": "mocha"
},
"dependencies": {
"ramda": "^0.26.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"xo": "^0.24.0"
},
"pre-commit": [
"code-style"
],
"xo": {
"envs": [
"node",
"mocha"
],
"space": 2,
"rules": {
"max-len": [
"error",
80,
2
]
}
}
}