UNPKG

3.34 kBJSONView Raw
1{
2 "name": "kcd-scripts",
3 "version": "1.10.0",
4 "description": "CLI for common scripts for my projects",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=5",
8 "yarn": ">=1"
9 },
10 "bin": {
11 "kcd-scripts": "dist/index.js"
12 },
13 "scripts": {
14 "test": "node src test",
15 "test:update": "node src test --updateSnapshot",
16 "build": "node src build",
17 "lint": "node src lint",
18 "format": "node src format",
19 "validate": "node src validate"
20 },
21 "husky": {
22 "hooks": {
23 "pre-commit": "node src pre-commit"
24 }
25 },
26 "files": [
27 "dist",
28 "babel.js",
29 "eslint.js",
30 "config.js",
31 "prettier.js",
32 "jest.js"
33 ],
34 "keywords": [],
35 "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
36 "license": "MIT",
37 "dependencies": {
38 "@babel/cli": "^7.6.4",
39 "@babel/core": "^7.6.4",
40 "@babel/plugin-proposal-class-properties": "^7.5.5",
41 "@babel/plugin-transform-modules-commonjs": "^7.6.0",
42 "@babel/plugin-transform-runtime": "^7.6.2",
43 "@babel/preset-env": "^7.6.3",
44 "@babel/preset-flow": "^7.0.0",
45 "@babel/preset-react": "^7.6.3",
46 "@babel/runtime": "^7.6.3",
47 "@rollup/plugin-replace": "^2.2.0",
48 "arrify": "^2.0.1",
49 "babel-jest": "^24.9.0",
50 "babel-plugin-macros": "^2.6.1",
51 "babel-plugin-minify-dead-code-elimination": "^0.5.1",
52 "babel-plugin-module-resolver": "^3.2.0",
53 "babel-plugin-transform-inline-environment-variables": "^0.4.3",
54 "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
55 "browserslist": "^4.7.2",
56 "concurrently": "^5.0.0",
57 "cosmiconfig": "^5.2.1",
58 "cross-env": "^5.2.1",
59 "cross-spawn": "^7.0.1",
60 "doctoc": "^1.4.0",
61 "eslint": "^6.6.0",
62 "eslint-config-kentcdodds": "^14.6.1",
63 "eslint-config-prettier": "^6.5.0",
64 "glob": "^7.1.5",
65 "husky": "^3.0.9",
66 "is-ci": "^2.0.0",
67 "jest": "^24.9.0",
68 "jest-watch-typeahead": "^0.4.0",
69 "lint-staged": "^9.4.2",
70 "lodash.camelcase": "^4.3.0",
71 "lodash.has": "^4.5.2",
72 "lodash.omit": "^4.5.0",
73 "mkdirp": "^0.5.1",
74 "prettier": "^1.18.2",
75 "read-pkg-up": "^7.0.0",
76 "resolve": "^1.12.0",
77 "rimraf": "^3.0.0",
78 "rollup": "^1.26.0",
79 "rollup-plugin-babel": "^4.3.3",
80 "rollup-plugin-commonjs": "^10.1.0",
81 "rollup-plugin-json": "^4.0.0",
82 "rollup-plugin-node-builtins": "^2.1.2",
83 "rollup-plugin-node-globals": "^1.4.0",
84 "rollup-plugin-node-resolve": "^5.2.0",
85 "rollup-plugin-size-snapshot": "^0.10.0",
86 "rollup-plugin-terser": "^5.1.2",
87 "semver": "^6.3.0",
88 "which": "^2.0.1",
89 "yargs-parser": "^16.0.0"
90 },
91 "eslintConfig": {
92 "extends": [
93 "kentcdodds",
94 "kentcdodds/jest"
95 ],
96 "rules": {
97 "no-process-exit": "off",
98 "import/no-dynamic-require": "off",
99 "import/no-unassigned-import": "off",
100 "no-console": "off",
101 "no-nested-ternary": "off",
102 "no-useless-catch": "off"
103 }
104 },
105 "eslintIgnore": [
106 "node_modules",
107 "coverage",
108 "dist"
109 ],
110 "repository": {
111 "type": "git",
112 "url": "https://github.com/kentcdodds/kcd-scripts.git"
113 },
114 "bugs": {
115 "url": "https://github.com/kentcdodds/kcd-scripts/issues"
116 },
117 "homepage": "https://github.com/kentcdodds/kcd-scripts#readme",
118 "devDependencies": {
119 "jest-in-case": "^1.0.2",
120 "slash": "^3.0.0"
121 }
122}