jmd-scripts
Version:
CLI for common scripts for my projects
123 lines (122 loc) • 3.36 kB
JSON
{
"name": "jmd-scripts",
"version": "1.12.5",
"description": "CLI for common scripts for my projects",
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"bin": {
"jmd-scripts": "dist/index.js"
},
"scripts": {
"add-contributor": "node src contributors add",
"test": "node src test",
"test:update": "node src test --updateSnapshot",
"build": "node src build",
"lint": "node src lint",
"format": "node src format",
"validate": "node src validate"
},
"files": [
"dist",
"babel.js",
"eslint.js",
"config.js",
"prettier.js",
"jest.js"
],
"keywords": [],
"author": "Jeff Detmer <jeff.detmer@gmail.com> (http://jeffdetmer.com/)",
"license": "MIT",
"dependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.5",
"@babel/plugin-external-helpers": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/plugin-transform-react-jsx": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.5",
"@babel/preset-react": "7.0.0",
"all-contributors-cli": "5.4.1",
"arrify": "1.0.1",
"babel-core": "^7.0.0-0",
"babel-jest": "23.6.0",
"babel-plugin-macros": "2.4.2",
"babel-plugin-minify-dead-code-elimination": "0.5.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.20",
"browserslist": "4.3.4",
"concurrently": "4.0.1",
"cross-env": "5.2.0",
"cross-spawn": "6.0.5",
"doctoc": "1.3.1",
"eslint": "5.6.1",
"eslint-config-kentcdodds": "14.0.4",
"eslint-config-prettier": "3.3.0",
"glob": "7.1.3",
"husky": "1.1.3",
"is-ci": "1.2.1",
"jest": "23.6.0",
"lint-staged": "8.0.4",
"lodash.camelcase": "4.3.0",
"lodash.has": "4.5.2",
"lodash.omit": "4.5.0",
"mkdirp": "0.5.1",
"prettier": "1.15.2",
"read-pkg-up": "4.0.0",
"resolve": "1.8.1",
"rimraf": "2.6.3",
"rollup": "0.67.1",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-size-snapshot": "0.7.0",
"rollup-plugin-terser": "4.0.1",
"semver": "5.6.0",
"which": "1.3.1",
"yargs-parser": "11.1.0"
},
"devDependencies": {
"jest-in-case": "1.0.2",
"slash": "2.0.0"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest"
],
"rules": {
"no-process-exit": "off",
"import/no-dynamic-require": "off",
"import/no-unassigned-import": "off",
"no-console": "off",
"no-nested-ternary": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "node src precommit"
}
},
"repository": {
"type": "git",
"url": "https://github.com/shellthor/jmd-scripts.git"
},
"bugs": {
"url": "https://github.com/shellthor/jmd-scripts/issues"
},
"homepage": "https://github.com/shellthor/jmd-scripts#readme"
}