-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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": "fast-myers-diff",
"version": "3.2.0",
"description": "A fast, minimal, memory-efficient diff algorithm on strings, arrays, and typed arrays.",
"main": "bin/index.js",
"files": [
"bin/index.js",
"bin/index.d.ts"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*-test.ts",
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"minify": "jsmin -o bin/index.min.js bin/index.js && del bin\\index.js && move bin\\index.min.js bin\\index.js",
"prepare": "tsc && npm run minify",
"benchmark": "tsc && node test/benchmark.js"
},
"keywords": [
"myers",
"diff",
"lcs"
],
"author": "Logan R. Kearsley",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "2.1.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/seedrandom": "^2.4.28",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"benchmark": "^2.1.4",
"benchtable": "^0.1.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"fast-array-diff": "1.0.1",
"fast-diff": "1.2.0",
"fast-myers-diff": "2.0.0",
"jsmin": "^1.0.1",
"microtime": "^3.0.0",
"mocha": "^10.1.0",
"myers-diff": "^2.0.1",
"seedrandom": "^3.0.5",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliese1337/fast-myers-diff.git"
},
"bugs": {
"url": "https://github.com/gliese1337/fast-myers-diff/issues"
},
"homepage": "https://github.com/gliese1337/fast-myers-diff#readme"
}