UNPKG

cac

Version:

Simple yet powerful framework for building command-line apps.

84 lines (83 loc) 1.88 kB
{ "name": "cac", "version": "6.5.8", "description": "Simple yet powerful framework for building command-line apps.", "repository": { "url": "egoist/cac", "type": "git" }, "main": "dist/index.js", "types": "types/index.d.ts", "files": [ "dist", "types", "!**/__test__/**", "/mod.js" ], "scripts": { "test": "jest", "test:cov": "jest --coverage", "build": "tsc -m ESNext && rollup -c", "toc": "markdown-toc -i README.md", "prepublishOnly": "npm run build", "docs:api": "typedoc --out api-doc --readme none --exclude \"**/__test__/**\" --theme minimal" }, "author": "egoist <0x142857@gmail.com>", "license": "MIT", "devDependencies": { "@types/execa": "^0.9.0", "@types/jest": "^23.3.9", "@types/mri": "^1.1.0", "cz-conventional-changelog": "^2.1.0", "eslint-config-rem": "^3.0.0", "events": "^3.0.0", "execa": "^1.0.0", "husky": "^1.2.0", "jest": "^24.9.0", "lint-staged": "^8.1.0", "markdown-toc": "^1.2.0", "mri": "^1.1.1", "prettier": "^1.15.2", "rollup": "^1.32.0", "@rollup/plugin-commonjs": "^11.0.2", "@rollup/plugin-node-resolve": "^7.1.1", "semantic-release": "^15.12.1", "ts-jest": "^23.10.5", "ts-node": "^7.0.1", "typedoc": "^0.13.0", "typescript": "^3.1.6" }, "engines": { "node": ">=8" }, "release": { "branch": "master" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "lint-staged": { "linters": { "*.{js,json,ts}": [ "prettier --write", "git add" ], "*.md": [ "markdown-toc -i", "prettier --write", "git add" ] }, "ignore": [ "dist/**", "mod.js" ] }, "husky": { "hooks": { "pre-commit": "npm t && lint-staged" } } }