forked from rtfpessoa/diff2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "diff2html",
"version": "2.4.0",
"homepage": "https://diff2html.xyz",
"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.git"
},
"bugs": {
"url": "https://www.github.com/rtfpessoa/diff2html/issues"
},
"engines": {
"node": ">=4"
},
"preferGlobal": true,
"scripts": {
"release": "./scripts/release.sh",
"release-website": "./scripts/release-website.sh",
"release-bower": "./scripts/update-bower-version.sh",
"templates": "./scripts/hulk.js --wrapper node --variable 'browserTemplates' ./src/templates/*.mustache > ./src/templates/diff2html-templates.js",
"style": "yarn run lint",
"lint": "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": "yarn run coverage && yarn run check-coverage",
"codacy": "cat ./coverage/lcov.info | codacy-coverage",
"preversion": "yarn run release && yarn run release-website && yarn run lint && yarn test",
"version": "yarn run release-bower && git add -A src dist docs package.json bower.json",
"postversion": "git push && git push --tags"
},
"main": "./src/diff2html.js",
"browser": {
"fs": false
},
"dependencies": {
"diff": "^3.5.0",
"hogan.js": "^3.0.2",
"lodash": "^4.17.10",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"autoprefixer": "^8.6.2",
"browserify": "^16.2.2",
"clean-css-cli": "^4.1.11",
"codacy-coverage": "^3.0.0",
"eslint": "^4.19.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"fast-html-parser": "^1.0.1",
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nopt": "^4.0.1",
"postcss-cli": "^5.0.0",
"uglify-js": "^3.4.0"
},
"license": "MIT",
"files": [
"src",
"dist",
"typescript"
]
}