diff2html/package.json

108 lines
3 KiB
JSON
Raw Normal View History

2015-07-18 23:23:36 +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": [
"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": {
2019-10-13 18:21:19 +00:00
"node": "8.* || >=10"
2015-07-18 23:23:36 +00:00
},
"scripts": {
"lint": "eslint '*/**/*.{js,jsx,ts,tsx}'",
2017-10-05 16:28:33 +00:00
"style": "yarn run lint",
2019-10-13 18:21:19 +00:00
"test": "yarn run build-scripts && yarn run build-templates && 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-12 21:45:49 +00:00
"build": "rm -rf build docs; 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",
"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
},
"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-10-12 21:45:49 +00:00
"diff": "4.0.1",
"hogan.js": "3.0.2"
},
"devDependencies": {
2019-10-12 21:45:49 +00:00
"@types/diff": "4.0.2",
"@types/highlight.js": "9.12.3",
2019-10-21 22:37:42 +00:00
"@types/hogan.js": "^3.0.0",
"@types/jest": "24.0.18",
2019-10-12 21:45:49 +00:00
"@types/mkdirp": "0.5.2",
"@types/node": "12.7.2",
"@types/nopt": "3.0.29",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
2019-10-12 21:45:49 +00:00
"autoprefixer": "9.6.0",
"browserify": "16.5.0",
"clean-css-cli": "4.3.0",
"codacy-coverage": "3.4.0",
"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",
2019-10-12 21:45:49 +00:00
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"fast-html-parser": "1.0.1",
"highlight.js": "9.15.10",
"jest": "24.9.0",
2019-10-12 21:45:49 +00:00
"mkdirp": "0.5.1",
"nopt": "4.0.1",
"postcss-cli": "6.1.3",
"prettier": "1.18.2",
2019-10-12 21:45:49 +00:00
"terser": "4.3.8",
"ts-jest": "24.1.0",
"typescript": "3.6.4",
"whatwg-fetch": "3.0.0"
2015-07-18 23:23:36 +00:00
},
2019-07-11 21:31:55 +00:00
"resolutions": {
"lodash": "4.17.15"
2019-07-11 21:31:55 +00:00
},
"license": "MIT",
2015-07-18 23:23:36 +00:00
"files": [
"build/commonjs-node",
"build/browser",
"build/css"
2015-07-18 23:23:36 +00:00
]
}