forked from rtfpessoa/diff2html-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.57 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
{
"name": "diff2html-cli",
"version": "2.0.0",
"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 src/*.js",
"coverage": "istanbul cover _mocha -- -u exports -R spec ./test/**/*",
"test": "npm run coverage",
"codacy": "npm run coverage && 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.1",
"extend": "^3.0.0",
"open": "0.0.5",
"request": "^2.73.0",
"yargs": "^4.8.0"
},
"devDependencies": {
"codacy-coverage": "^1.1.3",
"eslint": "^3.0.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
},
"license": "MIT",
"files": [
"bin",
"src",
"dist"
]
}