-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 902 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 902 Bytes
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
{
"name": "text-file-diff",
"version": "1.4.8",
"description": "line by line diff of two large files",
"license": "MIT",
"repository": "niiknow/text-file-diff",
"author": {
"name": "noogen",
"email": "friends@niiknow.org",
"url": "https://niiknow.org"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"build": "tsc",
"test": "tsc && DEBUG=text-file-diff nyc ava",
"report": "tsc && DEBUG=text-file-diff nyc report --reporter=html"
},
"bin": {
"text-file-diff": "./bin/text-file-diff"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"diff",
"difference",
"differences",
"compare",
"compare-files"
],
"devDependencies": {
"@types/node": "^20.5.9",
"ava": "^5.3.1",
"nyc": "^15.1.0",
"typescript": "^5.2.2"
},
"ava": {
"failWithoutAssertions": true
}
}