finepack
Version:
Organizes and maintains your JSON files readable
120 lines (119 loc) • 2.85 kB
JSON
{
"name": "finepack",
"description": "Organizes and maintains your JSON files readable",
"homepage": "https://github.com/Kikobeats/finepack",
"version": "2.12.9",
"main": "index.js",
"bin": {
"finepack": "bin/index.js"
},
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/Kikobeats/finepack.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/finepack/issues"
},
"keywords": [
"clean",
"cleanup",
"cli",
"deterministic",
"esthetic",
"json",
"lint",
"organize",
"package",
"package.json",
"pkg",
"tool",
"tooling",
"util",
"utility",
"validate"
],
"dependencies": {
"acho": "~4.0.6",
"acho-skin-cli": "~2.0.1",
"chalk": "~4.1.0",
"coffeescript": "~2.7.0",
"existential-default": "~1.3.1",
"json-is-equal": "~1.0.0",
"jsonlint": "~1.6.3",
"lodash.omit": "~4.5.0",
"mri": "~1.2.0",
"normalize-package-data": "~6.0.1",
"sort-keys-recursive": "~2.1.10"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ksmithut/prettier-standard": "latest",
"c8": "latest",
"ci-publish": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"github-generate-release": "latest",
"mocha": "latest",
"nano-staged": "latest",
"should": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">=4"
},
"files": [
"bin",
"index.js",
"lib"
],
"scripts": {
"clean": "npm prune && npm i ",
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"lint": "standard",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
"prerelease": "npm run contributors",
"pretest": "npm run lint",
"release": "standard-version -a",
"release:github": "github-generate-release",
"release:tags": "git push --follow-tags origin HEAD:master",
"test": "c8 mocha test/*.coffee"
},
"preferGlobal": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"mocha": {
"bail": true,
"reporter": "spec",
"require": [
"coffeescript/register",
"should"
]
},
"nano-staged": {
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}