@pinojs/json-colorizer
Version:
A library to format JSON with colors for display in the console
54 lines (53 loc) • 1.22 kB
JSON
{
"name": "@pinojs/json-colorizer",
"version": "4.0.0",
"description": "A library to format JSON with colors for display in the console",
"main": "src/lib/index.js",
"files": [
"src/lib"
],
"types": "src/lib/index.d.ts",
"scripts": {
"test": "mocha src/test",
"test:watch": "mocha -w src/test",
"prettify": "prettier --write src/**/*.js",
"lint": "eslint src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git@github.com:pinojss/json-colorizer.git"
},
"keywords": [
"json",
"colorize",
"console"
],
"authors": [
"Joe Attardi <jattardi@gmail.com> (http://joeattardi.codes)",
"Jiri Spac <capajj@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/json-colorizer/issues"
},
"dependencies": {
"colorette": "^2.0.16"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.49.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.3",
"prettier": "^3.0.3"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
}
}