-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
63 lines (63 loc) · 2.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "create-probot-app",
"version": "0.0.0-development",
"description": "Create a Probot app",
"bin": {
"create-probot-app": "./bin/create-probot-app.js",
"run-tests": "./bin/run-tests.js"
},
"files": [
"bin",
"templates"
],
"scripts": {
"test": "./script/test-all-templates.sh",
"test:template": "./script/test-template.sh",
"lint": "prettier --ignore-path .gitignore --check '**/*.{js,ts,json,yml,md}'",
"lint:fix": "prettier --ignore-path .gitignore --write '**/*.{js,ts,json,yml,md}'",
"dev:make-cpa": "node --input-type=module -e 'import { chBinMod } from \"./script/make-executable.js\"; chBinMod(\"create-probot-app\")'",
"dev:make-tests": "node --input-type=module -e 'import { chBinMod } from \"./script/make-executable.js\"; chBinMod(\"run-tests\")'",
"build": "npm run build:clean && tsc && npm run dev:make-cpa && npm run dev:make-tests",
"build:clean": "rimraf bin",
"build:source": "tsc && npm run dev:make-cpa",
"build:tests": "tsc && npm run dev:make-tests"
},
"repository": "github:probot/create-probot-app",
"keywords": [
"probot"
],
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"chalk": "^5.2.0",
"commander": "^12.0.0",
"conjecture": "^0.1.2",
"egad": "^0.2.0",
"execa": "^8.0.1",
"inquirer": "^9.1.4",
"jsesc": "^3.0.2",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"simple-git": "^3.22.0",
"stringify-author": "^0.1.3",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/inquirer": "^9.0.3",
"@types/jsesc": "^3.0.1",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/node": "^20.0.0",
"@types/rimraf": "^4.0.5",
"@types/validate-npm-package-name": "^4.0.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"semantic-release": "^24.0.0",
"typescript": "^5.3.3"
},
"type": "module",
"engines": {
"node": ">= 18"
}
}