diff2html/package.json

71 lines
1.8 KiB
JSON
Raw Normal View History

2015-07-18 23:23:36 +00:00
{
"name": "diff2html",
2016-05-01 19:52:25 +00:00
"version": "2.0.0-beta17",
"homepage": "http://rtfpessoa.github.io/diff2html/",
2015-07-18 23:23:36 +00:00
"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"
],
2015-07-18 23:23:36 +00:00
"author": {
"name": "Rodrigo Fernandes",
2015-07-18 23:23:36 +00:00
"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": {
2016-04-16 11:06:03 +00:00
"node": ">=0.12"
2015-07-18 23:23:36 +00:00
},
"preferGlobal": true,
2015-07-18 23:23:36 +00:00
"scripts": {
2016-04-16 11:06:03 +00:00
"release": "./scripts/release.sh",
"templates": "./scripts/hulk.js --wrapper node --variable 'browserTemplates' ./src/templates/*.mustache > ./src/templates/diff2html-templates.js",
2016-04-25 18:24:35 +00:00
"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",
2016-04-25 17:20:00 +00:00
"style": "jscs src/*.js src/ui/js/*.js",
"codacy": "istanbul cover _mocha -- -u exports -R spec ./test/**/* && cat ./coverage/lcov.info | codacy-coverage"
2015-07-18 23:23:36 +00:00
},
"main": "./src/diff2html.js",
2016-04-15 22:08:57 +00:00
"browser": {
"fs": false
},
2015-07-18 23:23:36 +00:00
"dependencies": {
"diff": "^2.2.2",
2016-04-15 22:08:57 +00:00
"hogan.js": "^3.0.2"
},
"devDependencies": {
2016-04-15 22:08:57 +00:00
"browserify": "^13.0.0",
"clean-css": "^3.4.10",
2016-01-31 18:33:33 +00:00
"codacy-coverage": "^1.1.3",
2015-12-23 16:05:30 +00:00
"fast-html-parser": "^1.0.1",
2016-01-31 18:33:33 +00:00
"istanbul": "^0.4.2",
2016-04-25 17:20:00 +00:00
"jscs": "^3.0.3",
2016-04-16 11:06:03 +00:00
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
2016-04-16 11:06:03 +00:00
"nopt": "^3.0.6",
2016-04-15 22:08:57 +00:00
"uglifyjs": "^2.4.10"
2015-07-18 23:23:36 +00:00
},
"license": "MIT",
2015-07-18 23:23:36 +00:00
"files": [
2015-12-21 00:17:19 +00:00
"src",
2016-02-09 21:26:22 +00:00
"dist"
2015-07-18 23:23:36 +00:00
]
}