2015-07-18 23:23:36 +00:00
{
2015-08-08 00:11:35 +00:00
"name" : "diff2html" ,
2019-12-22 17:52:27 +00:00
"version" : "2.12.2" ,
2016-08-23 16:33:54 +00:00
"homepage" : "https://diff2html.xyz" ,
2015-07-18 23:23:36 +00:00
"description" : "Fast Diff to colorized HTML" ,
"keywords" : [
2015-08-08 00:11:35 +00:00
"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" : {
2015-08-08 00:11:35 +00:00
"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" : {
2018-06-16 17:42:29 +00:00
"node" : ">=4"
2015-07-18 23:23:36 +00:00
} ,
"scripts" : {
2019-10-06 20:04:33 +00:00
"lint" : "eslint '*/**/*.{js,jsx,ts,tsx}'" ,
2017-10-05 16:28:33 +00:00
"style" : "yarn run lint" ,
2019-10-06 20:04:33 +00:00
"test" : "jest" ,
"coverage" : "jest --collectCoverage" ,
"coverage-html" : "yarn run coverage && open ./coverage/index.html" ,
2016-08-24 10:34:50 +00:00
"codacy" : "cat ./coverage/lcov.info | codacy-coverage" ,
2019-10-07 14:41:38 +00:00
"build" : "rm -rf build; yarn run build-scripts && yarn run build-css && yarn run build-templates && yarn run build-library && yarn run build-browser-bundle && yarn run build-website" ,
"build-scripts" : "tsc -p tsconfig.scripts.json" ,
"build-css" : "./scripts/build-css.sh" ,
"build-templates" : "./scripts/build-templates.sh" ,
"build-library" : "tsc -p tsconfig.json" ,
"build-browser-bundle" : "./scripts/build-browser-bundle.sh" ,
"build-website" : "./scripts/build-website.sh" ,
"preversion" : "yarn run build && yarn run lint && yarn test" ,
2019-10-06 20:04:33 +00:00
"version" : "git add -A package.json" ,
2016-05-07 13:03:37 +00:00
"postversion" : "git push && git push --tags"
2015-07-18 23:23:36 +00:00
} ,
2019-10-06 20:04:33 +00:00
"main" : "./build/commonjs-node/diff2html.js" ,
2016-04-15 22:08:57 +00:00
"browser" : {
"fs" : false
} ,
2015-07-18 23:23:36 +00:00
"dependencies" : {
2019-05-01 10:00:55 +00:00
"diff" : "^4.0.1" ,
2016-10-12 21:52:59 +00:00
"hogan.js" : "^3.0.2" ,
2019-05-08 22:42:42 +00:00
"merge" : "^1.2.1" ,
2018-11-14 22:56:48 +00:00
"whatwg-fetch" : "^3.0.0"
2015-10-31 21:55:15 +00:00
} ,
"devDependencies" : {
2019-10-07 14:41:38 +00:00
"@types/hogan.js" : "^3.0.0" ,
2019-10-06 20:04:33 +00:00
"@types/jest" : "24.0.18" ,
2019-10-07 14:41:38 +00:00
"@types/mkdirp" : "^0.5.2" ,
2019-10-06 20:04:33 +00:00
"@types/node" : "^12.7.2" ,
2019-10-07 14:41:38 +00:00
"@types/nopt" : "^3.0.29" ,
2019-10-06 20:04:33 +00:00
"@typescript-eslint/eslint-plugin" : "2.0.0" ,
"@typescript-eslint/parser" : "2.0.0" ,
2019-06-14 15:15:59 +00:00
"autoprefixer" : "^9.6.0" ,
2019-10-06 20:04:33 +00:00
"browserify" : "^16.5.0" ,
2019-05-01 10:00:55 +00:00
"clean-css-cli" : "^4.3.0" ,
"codacy-coverage" : "^3.4.0" ,
2019-10-06 20:04:33 +00:00
"eslint" : "6.2.2" ,
"eslint-config-prettier" : "6.1.0" ,
"eslint-config-standard" : "14.0.1" ,
"eslint-plugin-import" : "2.18.2" ,
"eslint-plugin-jest" : "22.15.2" ,
"eslint-plugin-node" : "9.1.0" ,
"eslint-plugin-prettier" : "3.1.0" ,
"eslint-plugin-promise" : "^4.2.1" ,
"eslint-plugin-standard" : "^4.0.1" ,
2015-12-23 16:05:30 +00:00
"fast-html-parser" : "^1.0.1" ,
2019-10-06 20:04:33 +00:00
"jest" : "24.9.0" ,
2016-04-16 11:06:03 +00:00
"mkdirp" : "^0.5.1" ,
2016-12-17 23:39:21 +00:00
"nopt" : "^4.0.1" ,
2019-10-06 20:04:33 +00:00
"postcss-cli" : "^6.1.3" ,
"prettier" : "1.18.2" ,
2019-10-07 14:41:38 +00:00
"terser" : "^4.3.8" ,
2019-10-06 20:04:33 +00:00
"ts-jest" : "24.0.2" ,
2019-10-07 14:41:38 +00:00
"typescript" : "^3.6.3"
2015-07-18 23:23:36 +00:00
} ,
2019-07-11 21:31:55 +00:00
"resolutions" : {
2019-10-06 20:04:33 +00:00
"lodash" : "4.17.15"
2019-07-11 21:31:55 +00:00
} ,
2015-07-18 23:32:40 +00:00
"license" : "MIT" ,
2015-07-18 23:23:36 +00:00
"files" : [
2019-10-07 14:41:38 +00:00
"build/commonjs-node" ,
"build/browser" ,
"build/css"
2015-07-18 23:23:36 +00:00
]
}