UNPKG

clang-format-git

Version:

Node wrapper for git-clang-format Python script as a standalone native binary to allow execution without a Python dependency.🐉

63 lines (62 loc) 1.52 kB
{ "name": "clang-format-git", "version": "2.0.5", "description": "Node wrapper for git-clang-format Python script as a standalone native binary to allow execution without a Python dependency.🐉", "main": "build/index.js", "files": [ "bin", "build", "chmod.js", "LICENSE.md", "README.md" ], "bin": { "git-clang-format": "build/cli.js", "clang-format-git": "build/cli.js" }, "keywords": [ "clang-format", "clang", "cli", "format", "formatter", "lint", "linter", "cpplint", "eslint", "prettier", "checker", "c", "cpp", "c++", "git" ], "author": "루밀LuMir <rpfos@naver.com> (https://github.com/lumirlumir)", "license": "MIT", "homepage": "https://clang-format-node.lumir.page", "repository": { "type": "github", "url": "git+https://github.com/lumirlumir/npm-clang-format-node.git", "directory": "packages/clang-format-git" }, "bugs": { "url": "https://github.com/lumirlumir/npm-clang-format-node/issues" }, "engines": { "node": ">=16" }, "publishConfig": { "provenance": true }, "scripts": { "postinstall": "node chmod.js || exit 0", "prepublishOnly": "npm run build", "build": "npx babel src -d build && npx tsc && node ../../scripts/cp.mjs ../../LICENSE.md LICENSE.md ../../README.md README.md", "test": "node --test", "dev": "node src/cli.js", "start": "node build/cli.js" }, "dependencies": { "clang-format-node": "^2.0.5" } }