-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"author": "[email protected]",
"bugs": {
"url": "https://github.com/umanoda/js-diff/issues"
},
"description": "calculate the edit distance",
"devDependencies": {
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"files": [
"dist"
],
"homepage": "https://github.com/umanoda/js-diff#readme",
"keywords": [
"O(NP)",
"edit distance"
],
"license": "SEE IN LICENSE file",
"main": "dist/index.js",
"name": "js-diff",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/umanoda/js-diff.git"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"test": "tsc --noEmit"
},
"version": "1.0.0"
}