|
15 | 15 | "test:template": "./script/test-template.sh", |
16 | 16 | "lint": "prettier --ignore-path .gitignore --check '**/*.{js,ts,json,yml,md}'", |
17 | 17 | "lint:fix": "prettier --ignore-path .gitignore --write '**/*.{js,ts,json,yml,md}'", |
18 | | - "dev": "tsc-watch --onFirstSuccess \"npm run dev:make-cpa\"", |
19 | | - "dev:make-cpa": "ts-node -e 'import { chBinMod } from \"./script/make-executable\"; chBinMod(\"create-probot-app\")'", |
20 | | - "dev:make-tests": "ts-node -e 'import { chBinMod } from \"./script/make-executable\"; chBinMod(\"run-tests\")'", |
| 18 | + "dev:make-cpa": "node --input-type=module -e 'import { chBinMod } from \"./script/make-executable.js\"; chBinMod(\"create-probot-app\")'", |
| 19 | + "dev:make-tests": "node --input-type=module -e 'import { chBinMod } from \"./script/make-executable.js\"; chBinMod(\"run-tests\")'", |
21 | 20 | "build": "npm run build:clean && tsc && npm run dev:make-cpa && npm run dev:make-tests", |
22 | 21 | "build:clean": "rimraf bin", |
23 | 22 | "build:source": "tsc && npm run dev:make-cpa", |
|
30 | 29 | "author": "Brandon Keepers", |
31 | 30 | "license": "ISC", |
32 | 31 | "dependencies": { |
33 | | - "chalk": "^4.1.2", |
34 | | - "commander": "^9.0.0", |
| 32 | + "chalk": "^5.2.0", |
| 33 | + "commander": "^10.0.0", |
35 | 34 | "conjecture": "^0.1.2", |
36 | 35 | "cross-spawn": "^7.0.3", |
37 | 36 | "egad": "^0.2.0", |
38 | | - "fs-extra": "^11.0.0", |
39 | | - "inquirer": "^8.2.4", |
40 | | - "jsesc": "^3.0.1", |
| 37 | + "execa": "^6.1.0", |
| 38 | + "fs-extra": "^11.1.0", |
| 39 | + "inquirer": "^9.1.4", |
| 40 | + "jsesc": "^3.0.2", |
41 | 41 | "lodash.camelcase": "^4.3.0", |
42 | 42 | "lodash.kebabcase": "^4.1.1", |
43 | | - "npm": "^9.0.0", |
44 | | - "simple-git": "^3.0.3", |
| 43 | + "simple-git": "^3.15.1", |
45 | 44 | "stringify-author": "^0.1.3", |
46 | 45 | "validate-npm-package-name": "^5.0.0" |
47 | 46 | }, |
48 | 47 | "devDependencies": { |
49 | 48 | "@types/cross-spawn": "^6.0.2", |
50 | | - "@types/fs-extra": "^9.0.1", |
51 | | - "@types/inquirer": "^8.1.1", |
52 | | - "@types/jsesc": "^3.0.0", |
53 | | - "@types/lodash.camelcase": "^4.3.6", |
54 | | - "@types/lodash.kebabcase": "^4.1.6", |
55 | | - "@types/node": "^18.0.0", |
| 49 | + "@types/fs-extra": "^11.0.1", |
| 50 | + "@types/inquirer": "^9.0.3", |
| 51 | + "@types/jsesc": "^3.0.1", |
| 52 | + "@types/lodash.camelcase": "^4.3.7", |
| 53 | + "@types/lodash.kebabcase": "^4.1.7", |
| 54 | + "@types/node": "^18.11.18", |
56 | 55 | "@types/npm": "^7.19.0", |
57 | | - "@types/rimraf": "^3.0.0", |
58 | | - "@types/shelljs": "^0.8.8", |
| 56 | + "@types/rimraf": "^3.0.2", |
| 57 | + "@types/shelljs": "^0.8.11", |
59 | 58 | "@types/validate-npm-package-name": "^4.0.0", |
60 | | - "prettier": "^2.2.1", |
61 | | - "rimraf": "^3.0.2", |
| 59 | + "prettier": "^2.8.3", |
| 60 | + "rimraf": "^4.0.5", |
62 | 61 | "semantic-release": "^19.0.2", |
63 | | - "shelljs": "^0.8.4", |
64 | | - "ts-node": "^10.0.0", |
65 | | - "tsc-watch": "^6.0.0", |
66 | | - "typescript": "^4.0.2" |
| 62 | + "shelljs": "^0.8.5", |
| 63 | + "typescript": "^4.9.4" |
| 64 | + }, |
| 65 | + "type": "module", |
| 66 | + "engines": { |
| 67 | + "node": ">= 16.7.0" |
67 | 68 | } |
68 | 69 | } |
0 commit comments