diff2html/package.json
2016-05-01 20:52:25 +01:00

70 lines
1.8 KiB
JSON

{
"name": "diff2html",
"version": "2.0.0-beta17",
"homepage": "http://rtfpessoa.github.io/diff2html/",
"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": ">=0.12"
},
"preferGlobal": true,
"scripts": {
"release": "./scripts/release.sh",
"templates": "./scripts/hulk.js --wrapper node --variable 'browserTemplates' ./src/templates/*.mustache > ./src/templates/diff2html-templates.js",
"test": "jscs src/*.js src/ui/js/*.js && istanbul cover _mocha -- -u exports -R spec ./test/**/* && istanbul check-coverage --statements 90 --functions 90 --branches 85 --lines 90 ./coverage/coverage.json",
"style": "jscs src/*.js src/ui/js/*.js",
"codacy": "istanbul cover _mocha -- -u exports -R spec ./test/**/* && cat ./coverage/lcov.info | codacy-coverage"
},
"main": "./src/diff2html.js",
"browser": {
"fs": false
},
"dependencies": {
"diff": "^2.2.2",
"hogan.js": "^3.0.2"
},
"devDependencies": {
"browserify": "^13.0.0",
"clean-css": "^3.4.10",
"codacy-coverage": "^1.1.3",
"fast-html-parser": "^1.0.1",
"istanbul": "^0.4.2",
"jscs": "^3.0.3",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"nopt": "^3.0.6",
"uglifyjs": "^2.4.10"
},
"license": "MIT",
"files": [
"src",
"dist"
]
}