-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.76 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.76 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "git-diff",
"version": "2.0.6",
"description": "Returns the git diff of two strings",
"author": "Daniel Lewis BSc (Hons)",
"license": "ISC",
"main": "sync.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover -x \"**/*.spec.js\" ./node_modules/mocha/bin/_mocha",
"enforcer": "./node_modules/.bin/istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"build": "npm-run-all test enforcer",
"prepush": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danday74/git-diff.git"
},
"bugs": {
"url": "https://github.com/danday74/git-diff/issues"
},
"homepage": "https://github.com/danday74/git-diff#readme",
"keywords": [
"diff",
"differ",
"difference",
"git-diff",
"git-differ",
"git-difference",
"git diff",
"git differ",
"git difference",
"string-diff",
"string-differ",
"string-difference",
"string diff",
"string differ",
"string difference",
"diff-tool",
"differ-tool",
"difference-tool",
"diff tool",
"differ tool",
"difference tool",
"xxxxxxxxxx",
"difftool",
"git-difftool",
"git-diff-tool",
"git difftool",
"git diff tool"
],
"dependencies": {
"chalk": "^2.3.2",
"diff": "^3.5.0",
"loglevel": "^1.6.1",
"shelljs": "^0.8.1",
"shelljs.exec": "^1.1.7"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"coveralls": "2.11.16",
"data-driven": "^1.4.0",
"eslint": "^4.18.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"npm-run-all": "^4.1.2",
"readfile-go": "^1.0.5",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0"
},
"engines": {
"node": ">= 4.8.0"
}
}