forked from rtfpessoa/diff2html-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "diff2html-cli",
"version": "2.0.3",
"homepage": "https://www.github.com/rtfpessoa/diff2html-cli",
"description": "Fast Diff to colorized HTML",
"keywords": [
"git",
"diff",
"pretty",
"side",
"line",
"side-by-side",
"line-by-line",
"character",
"highlight",
"pretty",
"color",
"html",
"diff2html",
"difftohtml",
"colorized"
],
"author": {
"name": "Rodrigo Fernandes",
"email": "rtfrodrigo@gmail.com"
},
"repository": {
"type": "git",
"url": "https://www.github.com/rtfpessoa/diff2html-cli.git"
},
"bugs": {
"url": "https://www.github.com/rtfpessoa/diff2html-cli/issues"
},
"engines": {
"node": ">=0.12.0"
},
"preferGlobal": true,
"scripts": {
"style": "eslint .",
"coverage": "istanbul cover _mocha -- -u exports -R spec ./test/**/*",
"check-coverage": "istanbul check-coverage --statements 90 --functions 90 --branches 85 --lines 90 ./coverage/coverage.json",
"test": "npm run coverage",
"codacy": "cat ./coverage/lcov.info | codacy-coverage",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"bin": {
"diff2html": "./bin/diff2html"
},
"main": "./src/main.js",
"dependencies": {
"copy-paste": "^1.3.0",
"diff2html": "^2.0.8",
"extend": "^3.0.0",
"open": "^0.0.5",
"request": "^2.75.0",
"yargs": "^6.1.1"
},
"devDependencies": {
"codacy-coverage": "^2.0.0",
"eslint": "^3.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
},
"license": "MIT",
"files": [
"bin",
"src",
"dist"
]
}