UNPKG

json-highlight

Version:
73 lines (72 loc) 1.88 kB
{ "name": "json-highlight", "version": "0.1.2", "description": "A Json to Html formatter", "unpkg": "dist/json-highlight.min.js", "jsdelivr": "dist/json-highlight.min.js", "main": "dist/json-highlight.js", "types": "types/index.d.ts", "files": [ "src", "dist", "types" ], "scripts": { "start": "npm run dev", "dev": "webpack-dev-server --progress --config build/webpack.config.dev.js", "build": "rollup --config build/rollup.config.js", "build:webpack": "webpack --config build/webpack.config.prod.js && webpack --config build/webpack.config.doc.js", "prepublishOnly": "npm run build", "prettier": "prettier --write ./src/**/* && prettier --write ./example/**/*", "commitmsg": "commitlint -E GIT_PARAMS", "precommit": "lint-staged", "test": "echo \"Error: no test specified\" && exit 1" }, "lint-staged": { "**/*.{js,ts}": [ "prettier --write", "git add" ] }, "repository": { "type": "git", "url": "git+ssh://git@github.com/bowencool/json-highlight.git" }, "keywords": [ "json-highlight", "highlight", "json", "html", "json format", "json to html" ], "author": "bowencool", "license": "MIT", "bugs": { "url": "https://github.com/bowencool/json-highlight/issues" }, "homepage": "https://github.com/bowencool/json-highlight#readme", "devDependencies": { "@commitlint/cli": "^7.0.0", "@commitlint/config-angular": "^7.0.1", "html-webpack-plugin": "^3.2.0", "lint-staged": "^7.2.0", "prettier": "^1.13.7", "rollup": "^1.1.2", "rollup-plugin-terser": "^4.0.4", "rollup-plugin-typescript2": "^0.19.2", "ts-loader": "^5.3.3", "typescript": "^3.2.2", "webpack": "^4.16.0", "webpack-cli": "^3.0.8", "webpack-dev-server": "^3.1.4", "webpack-merge": "^4.1.3" }, "engines": { "node": ">= 8.11.0", "npm": ">= 5.6.0" }, "dependencies": { "rollup-plugin-typescript": "^1.0.0" } }