-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.05 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
{
"name": "disparity",
"version": "3.2.0",
"description": "Colorized string diff ideal for text/code that spans through multiple lines",
"main": "disparity.js",
"types": "disparity.d.ts",
"bin": {
"disparity": "bin/disparity"
},
"scripts": {
"test": "node test/runner.js"
},
"repository": {
"type": "git",
"url": "https://github.com/millermedeiros/disparity.git"
},
"files": [
"bin",
"disparity-cli.js",
"disparity.d.ts",
"disparity.js"
],
"engines": {
"node": ">=8"
},
"keywords": [
"diff",
"char",
"unified",
"multiline",
"string",
"color",
"ansi",
"terminal",
"cli",
"tty"
],
"author": "Miller Medeiros <http://millermedeiros.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/millermedeiros/disparity/issues"
},
"homepage": "https://github.com/millermedeiros/disparity",
"dependencies": {
"ansi-styles": "^4.2.1",
"diff": "^4.0.2"
},
"jshintConfig": {
"node": true,
"eqnull": true
},
"devDependencies": {}
}