|
2 | 2 | "name": "kcd-scripts", |
3 | 3 | "version": "0.0.0-semantically-released", |
4 | 4 | "description": "CLI for common scripts for my projects", |
5 | | - "engines": { |
6 | | - "node": "^12.22.0 || ^14.17.0 || >=16.0.0", |
7 | | - "npm": ">=6" |
| 5 | + "keywords": [], |
| 6 | + "homepage": "https://github.com/kentcdodds/kcd-scripts#readme", |
| 7 | + "bugs": { |
| 8 | + "url": "https://github.com/kentcdodds/kcd-scripts/issues" |
8 | 9 | }, |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "https://github.com/kentcdodds/kcd-scripts" |
| 13 | + }, |
| 14 | + "license": "MIT", |
| 15 | + "author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)", |
9 | 16 | "bin": { |
10 | 17 | "kcd-scripts": "dist/index.js" |
11 | 18 | }, |
12 | | - "scripts": { |
13 | | - "test": "node src test", |
14 | | - "test:update": "node src test --updateSnapshot", |
15 | | - "build": "node src build", |
16 | | - "lint": "node src lint", |
17 | | - "format": "node src format", |
18 | | - "validate": "node src validate" |
19 | | - }, |
20 | 19 | "files": [ |
21 | 20 | "dist", |
22 | 21 | "babel.js", |
|
27 | 26 | "prettier.js", |
28 | 27 | "shared-tsconfig.json" |
29 | 28 | ], |
30 | | - "keywords": [], |
31 | | - "author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)", |
32 | | - "license": "MIT", |
| 29 | + "scripts": { |
| 30 | + "build": "node src build", |
| 31 | + "format": "node src format", |
| 32 | + "lint": "node src lint", |
| 33 | + "test": "node src test", |
| 34 | + "test:update": "node src test --updateSnapshot", |
| 35 | + "validate": "node src validate" |
| 36 | + }, |
| 37 | + "eslintConfig": { |
| 38 | + "extends": [ |
| 39 | + "kentcdodds", |
| 40 | + "kentcdodds/jest" |
| 41 | + ], |
| 42 | + "rules": { |
| 43 | + "no-console": "off", |
| 44 | + "no-nested-ternary": "off", |
| 45 | + "no-process-exit": "off", |
| 46 | + "no-useless-catch": "off", |
| 47 | + "import/extensions": "off", |
| 48 | + "import/no-dynamic-require": "off", |
| 49 | + "import/no-import-module-exports": "off", |
| 50 | + "import/no-unassigned-import": "off" |
| 51 | + } |
| 52 | + }, |
| 53 | + "eslintIgnore": [ |
| 54 | + "node_modules", |
| 55 | + "coverage", |
| 56 | + "dist" |
| 57 | + ], |
33 | 58 | "dependencies": { |
34 | | - "@babel/cli": "^7.17.6", |
35 | | - "@babel/core": "^7.17.8", |
36 | | - "@babel/plugin-proposal-class-properties": "^7.16.7", |
37 | | - "@babel/plugin-transform-modules-commonjs": "^7.17.7", |
38 | | - "@babel/plugin-transform-runtime": "^7.17.0", |
39 | | - "@babel/preset-env": "^7.16.11", |
40 | | - "@babel/preset-react": "^7.16.7", |
41 | | - "@babel/preset-typescript": "^7.16.7", |
42 | | - "@babel/runtime": "^7.17.8", |
| 59 | + "@babel/cli": "^7.17.10", |
| 60 | + "@babel/core": "^7.18.5", |
| 61 | + "@babel/plugin-proposal-class-properties": "^7.17.12", |
| 62 | + "@babel/plugin-transform-modules-commonjs": "^7.18.2", |
| 63 | + "@babel/plugin-transform-runtime": "^7.18.5", |
| 64 | + "@babel/preset-env": "^7.18.2", |
| 65 | + "@babel/preset-react": "^7.17.12", |
| 66 | + "@babel/preset-typescript": "^7.17.12", |
| 67 | + "@babel/runtime": "^7.18.3", |
43 | 68 | "@rollup/plugin-babel": "^5.3.1", |
44 | | - "@rollup/plugin-commonjs": "^21.0.3", |
| 69 | + "@rollup/plugin-commonjs": "^22.0.0", |
45 | 70 | "@rollup/plugin-json": "^4.1.0", |
46 | | - "@rollup/plugin-node-resolve": "^13.1.3", |
| 71 | + "@rollup/plugin-node-resolve": "^13.3.0", |
47 | 72 | "@rollup/plugin-replace": "^4.0.0", |
48 | | - "@types/jest": "^27.4.1", |
| 73 | + "@types/jest": "^27.5.2", |
49 | 74 | "arrify": "^2.0.1", |
50 | | - "babel-jest": "^27.5.1", |
| 75 | + "babel-jest": "^28.1.1", |
51 | 76 | "babel-plugin-macros": "^3.1.0", |
52 | | - "babel-plugin-minify-dead-code-elimination": "^0.5.1", |
| 77 | + "babel-plugin-minify-dead-code-elimination": "^0.5.2", |
53 | 78 | "babel-plugin-module-resolver": "^4.1.0", |
54 | | - "babel-plugin-transform-inline-environment-variables": "^0.4.3", |
| 79 | + "babel-plugin-transform-inline-environment-variables": "^0.4.4", |
55 | 80 | "babel-plugin-transform-react-remove-prop-types": "^0.4.24", |
56 | | - "browserslist": "^4.20.2", |
57 | | - "builtin-modules": "^3.2.0", |
| 81 | + "browserslist": "^4.20.4", |
| 82 | + "builtin-modules": "^3.3.0", |
58 | 83 | "chalk": "^4.1.2", |
59 | | - "concurrently": "^7.1.0", |
| 84 | + "concurrently": "^7.2.2", |
60 | 85 | "cosmiconfig": "^7.0.1", |
61 | 86 | "cpy": "^8.1.2", |
62 | 87 | "cross-env": "^7.0.3", |
63 | 88 | "cross-spawn": "^7.0.3", |
64 | | - "doctoc": "^2.1.0", |
65 | | - "eslint": "^8.12.0", |
66 | | - "eslint-config-kentcdodds": "^20.2.0", |
67 | | - "glob": "^7.2.0", |
| 89 | + "doctoc": "^2.2.0", |
| 90 | + "eslint": "^8.18.0", |
| 91 | + "eslint-config-kentcdodds": "^20.3.1", |
| 92 | + "glob": "^8.0.3", |
68 | 93 | "husky": "^4.3.8", |
69 | 94 | "is-ci": "^3.0.1", |
70 | | - "jest": "^27.5.1", |
| 95 | + "jest": "^28.1.1", |
| 96 | + "jest-environment-jsdom": "^28.1.1", |
71 | 97 | "jest-serializer-path": "^0.1.15", |
72 | 98 | "jest-snapshot-serializer-raw": "^1.2.0", |
73 | | - "jest-watch-typeahead": "^1.0.0", |
74 | | - "lint-staged": "^12.3.7", |
| 99 | + "jest-watch-typeahead": "^1.1.0", |
| 100 | + "lint-staged": "^12.5.0", |
75 | 101 | "lodash.camelcase": "^4.3.0", |
76 | 102 | "lodash.has": "^4.5.2", |
77 | 103 | "lodash.omit": "^4.5.0", |
78 | 104 | "mkdirp": "^1.0.4", |
79 | | - "prettier": "2.6.2", |
| 105 | + "prettier": "2.7.1", |
80 | 106 | "read-pkg-up": "^7.0.1", |
81 | | - "resolve": "^1.22.0", |
| 107 | + "resolve": "^1.22.1", |
82 | 108 | "rimraf": "^3.0.2", |
83 | | - "rollup": "^2.70.1", |
| 109 | + "rollup": "^2.75.7", |
84 | 110 | "rollup-plugin-node-builtins": "^2.1.2", |
85 | 111 | "rollup-plugin-node-globals": "^1.4.0", |
86 | 112 | "rollup-plugin-terser": "^7.0.2", |
87 | | - "semver": "^7.3.5", |
| 113 | + "semver": "^7.3.7", |
88 | 114 | "which": "^2.0.2", |
89 | 115 | "yargs-parser": "^21.0.1" |
90 | 116 | }, |
91 | 117 | "devDependencies": { |
92 | 118 | "jest-in-case": "^1.0.2", |
93 | 119 | "slash": "^3.0.0" |
94 | 120 | }, |
95 | | - "eslintConfig": { |
96 | | - "extends": [ |
97 | | - "kentcdodds", |
98 | | - "kentcdodds/jest" |
99 | | - ], |
100 | | - "rules": { |
101 | | - "no-process-exit": "off", |
102 | | - "import/no-dynamic-require": "off", |
103 | | - "import/no-import-module-exports": "off", |
104 | | - "import/no-unassigned-import": "off", |
105 | | - "import/extensions": "off", |
106 | | - "no-console": "off", |
107 | | - "no-nested-ternary": "off", |
108 | | - "no-useless-catch": "off" |
109 | | - } |
110 | | - }, |
111 | | - "eslintIgnore": [ |
112 | | - "node_modules", |
113 | | - "coverage", |
114 | | - "dist" |
115 | | - ], |
116 | | - "repository": { |
117 | | - "type": "git", |
118 | | - "url": "https://github.com/kentcdodds/kcd-scripts" |
119 | | - }, |
120 | | - "bugs": { |
121 | | - "url": "https://github.com/kentcdodds/kcd-scripts/issues" |
122 | | - }, |
123 | | - "homepage": "https://github.com/kentcdodds/kcd-scripts#readme" |
| 121 | + "engines": { |
| 122 | + "node": "^12.22.0 || ^14.17.0 || ^16.10.0 || >=17.0.0", |
| 123 | + "npm": ">=6" |
| 124 | + } |
124 | 125 | } |
0 commit comments