declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
138 lines (137 loc) • 5.13 kB
JSON
{
"name": "declapract",
"author": "ehmpathy",
"description": "A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.",
"version": "0.12.0",
"repository": "ehmpathy/declapract",
"homepage": "https://github.com/ehmpathy/declapract",
"keywords": [
"declarative",
"best",
"practice",
"best-practice",
"best-practices",
"maintainable",
"scalable",
"repository",
"linting",
"fix"
],
"bugs": "https://github.com/ehmpathy/declapract/issues",
"engines": {
"node": ">=12.0.0"
},
"oclif": {
"commands": "./dist/contract/commands",
"bin": "declapract",
"plugins": [
"@oclif/plugin-help"
]
},
"types": "dist/contract/index.d.ts",
"bin": {
"declapract": "./bin/run"
},
"files": [
"/bin",
"/dist"
],
"license": "MIT",
"main": "dist/contract/index.js",
"scripts": {
"generate:cli-readme": "npm run build && oclif-dev readme",
"build:ts": "tsc -p ./tsconfig.build.json",
"commit:with-cli": "npx cz",
"fix:format:prettier": "prettier --write '**/*.ts' --config ./prettier.config.js",
"fix:format:terraform": "echo 'no terraform'",
"fix:format": "npm run fix:format:prettier",
"fix:lint": "eslint -c ./.eslintrc.js src/**/*.ts --fix",
"build:artifact": "echo 'no artifact'",
"build:clean": "rm dist/ -rf",
"build:compile": "tsc -p ./tsconfig.build.json",
"build": "npm run build:clean && npm run build:compile",
"provision:integration-test-db": "echo 'no integration test db'",
"test:commits": "LAST_TAG=$(git describe --tags --abbrev=0 @^ 2> /dev/null || git rev-list --max-parents=0 HEAD) && npx commitlint --from $LAST_TAG --to HEAD --verbose",
"test:types": "tsc -p ./tsconfig.build.json --noEmit",
"test:format:prettier": "prettier --parser typescript --check 'src/**/*.ts' --config ./prettier.config.js",
"test:format:terraform": "echo 'no terraform'",
"test:format": "npm run test:format:prettier",
"test:lint:deps": "npx depcheck -c ./depcheckrc.yml",
"test:lint:eslint": "eslint -c ./.eslintrc.js src/**/*.ts",
"test:lint": "npm run test:lint:eslint && npm run test:lint:deps",
"test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')",
"test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')",
"test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests",
"test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
"test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests",
"prepush": "npm run test && npm run build",
"prepublish": "npm run build",
"preversion": "npm run prepush",
"postversion": "git push origin HEAD --tags --no-verify",
"postinstall": "[ -d .git ] && npm run prepare:husky || exit 0",
"prepare:husky": "npx husky install && chmod ug+x .husky/*"
},
"dependencies": {
"@ehmpathy/error-fns": "1.3.2",
"@oclif/core": "2.0.11",
"@oclif/plugin-help": "3.3.1",
"chalk": "2.4.2",
"cross-path-sort": "1.0.0",
"domain-objects": "0.22.1",
"expect": "29.4.3",
"fast-glob": "3.2.2",
"find-nearest-package-json": "2.0.1",
"flat": "5.0.2",
"indent-string": "4.0.0",
"jest-diff": "29.4.3",
"joi": "17.4.0",
"json5": "2.2.3",
"lodash.uniqby": "4.7.0",
"oclif": "3.3.1",
"shelljs": "0.8.5",
"simple-leveled-log-methods": "0.1.4",
"ts-node": "8.6.2",
"type-fns": "1.17.0",
"uuid": "9.0.0",
"yaml": "1.6.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "13.1.0",
"@oclif/dev-cli": "1.26.10",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@tsconfig/node-lts-strictest": "18.12.1",
"@types/flat": "5.0.2",
"@types/jest": "29.2.4",
"@types/joi": "17.2.3",
"@types/lodash.uniqby": "4.7.7",
"@types/shelljs": "0.8.9",
"@types/uuid": "9.0.0",
"@types/yaml": "1.0.2",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"core-js": "3.26.1",
"cz-conventional-changelog": "3.3.0",
"declapract-typescript-ehmpathy": "0.35.6",
"depcheck": "1.4.3",
"eslint": "8.56.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.3.1",
"prettier": "2.8.1",
"simple-lambda-client": "2.1.3",
"test-fns": "1.4.2",
"ts-jest": "29.1.3",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"uuid": "3.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}