UNPKG

kcd-scripts

Version:

CLI for common scripts for my projects

128 lines (127 loc) 3.59 kB
{ "name": "kcd-scripts", "version": "17.0.0", "description": "CLI for common scripts for my projects", "keywords": [], "homepage": "https://github.com/kentcdodds/kcd-scripts#readme", "bugs": { "url": "https://github.com/kentcdodds/kcd-scripts/issues" }, "repository": { "type": "git", "url": "https://github.com/kentcdodds/kcd-scripts" }, "license": "MIT", "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)", "bin": { "kcd-scripts": "dist/index.js" }, "files": [ "dist", "babel.js", "config.js", "eslint.js", "husky.js", "jest.js", "prettier.js", "shared-tsconfig.json" ], "scripts": { "build": "node src build", "format": "node src format", "lint": "node src lint", "test": "node src test", "test:update": "node src test --updateSnapshot", "validate": "node src validate" }, "eslintConfig": { "extends": [ "kentcdodds", "kentcdodds/jest" ], "rules": { "no-console": "off", "no-nested-ternary": "off", "no-process-exit": "off", "no-useless-catch": "off", "import/extensions": "off", "import/no-dynamic-require": "off", "import/no-import-module-exports": "off", "import/no-unassigned-import": "off" } }, "eslintIgnore": [ "node_modules", "coverage", "dist" ], "dependencies": { "@babel/cli": "^7.18.10", "@babel/core": "^7.18.13", "@babel/plugin-transform-class-properties": "^7.18.6", "@babel/plugin-transform-modules-commonjs": "^7.18.6", "@babel/plugin-transform-runtime": "^7.18.10", "@babel/preset-env": "^7.18.10", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.18.9", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-replace": "^5.0.5", "@rollup/plugin-terser": "^0.4.4", "@types/jest": "^29.4.0", "arrify": "^2.0.1", "babel-jest": "^29.4.1", "babel-plugin-macros": "^3.1.0", "babel-plugin-minify-dead-code-elimination": "^0.5.2", "babel-plugin-module-resolver": "^5.0.0", "babel-plugin-transform-inline-environment-variables": "^0.4.4", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", "browserslist": "4.21.3", "builtin-modules": "^3.3.0", "chalk": "^4.1.2", "concurrently": "^7.3.0", "cosmiconfig": "^7.0.1", "cpy": "npm:@brickdoc/cpy@8.1.2-patch.1", "cross-env": "^7.0.3", "cross-spawn": "^7.0.3", "doctoc": "^2.2.0", "eslint": "^8.23.0", "eslint-config-kentcdodds": "^20.4.0", "glob": "^8.0.3", "husky": "^4.3.8", "is-ci": "^3.0.1", "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", "jest-serializer-path": "^0.1.15", "jest-snapshot-serializer-raw": "^1.2.0", "jest-watch-typeahead": "^2.2.2", "lint-staged": "^12.5.0", "lodash.camelcase": "^4.3.0", "lodash.has": "^4.5.2", "lodash.omit": "^4.5.0", "mkdirp": "^1.0.4", "prettier": "^3", "read-pkg-up": "^7.0.1", "resolve": "^1.22.1", "rimraf": "^3.0.2", "rollup": "^4.12.0", "rollup-plugin-polyfill-node": "^0.13.0", "semver": "^7.3.7", "which": "^2.0.2", "yargs-parser": "^21.1.1" }, "devDependencies": { "jest-in-case": "^1.0.2", "slash": "^3.0.0" }, "overrides": { "caniuse-lite": "1.0.30001553" }, "engines": { "node": "^16.10.0 || >=17.0.0", "npm": ">=6" } }