-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@kshramt/sequence-comparisons",
"version": "0.5.0",
"description": "This package provides a linear-space refinement of the algorithm described in \"An O(NP) sequence comparison algorithm\" by Wu et al. (1989).",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kshramt/sequence-comparisons.git"
},
"author": "kshramt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kshramt/sequence-comparisons/issues"
},
"homepage": "https://github.com/kshramt/sequence-comparisons",
"devDependencies": {
"@fast-check/vitest": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"fast-check": "^3.11.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true
},
"prettier": {
"trailingComma": "all"
}
}