UNPKG

lintspaces-cli

Version:
53 lines (52 loc) 1.22 kB
{ "name": "lintspaces-cli", "version": "1.0.0", "description": "CLI for the lintspaces module", "main": "index.js", "scripts": { "coverage": "nyc mocha test/*.js && nyc report --reporter=lcov", "format": "prettier --no-semi --single-quote --write index.js", "test": "mocha test/*.test.js" }, "husky": { "hooks": { "pre-commit": "npm test && npm run format && git add ." } }, "bin": { "lintspaces": "bin/lintspaces-cli.js" }, "repository": { "type": "git", "url": "git://github.com/evanshortiss/lintspaces-cli.git" }, "keywords": [ "lintspaces", "node-lintspaces", "cli" ], "engines": { "node": ">=6" }, "author": "Evan Shortiss", "license": "MIT", "bugs": { "url": "https://github.com/evanshortiss/lintspaces-cli/issues" }, "homepage": "https://github.com/evanshortiss/lintspaces-cli", "dependencies": { "colors": "~1.4.0", "commander": "~12.1.0", "glob": "~11.0.0", "lintspaces": "~0.12.0", "lodash.map": "~4.6.0" }, "devDependencies": { "coveralls": "~3.1.1", "expect": "~29.7.0", "mocha": "~10.7.3", "nyc": "~17.1.0", "prettier": "~3.3.3", "sinon": "~19.0.2" } }