forked from probot/create-probot-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.2 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
64
65
66
67
68
{
"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": "tsc-watch --onFirstSuccess \"npm run dev:make-cpa\"",
"dev:make-cpa": "ts-node -e 'import { chBinMod } from \"./script/make-executable\"; chBinMod(\"create-probot-app\")'",
"dev:make-tests": "ts-node -e 'import { chBinMod } from \"./script/make-executable\"; 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": "^4.1.0",
"commander": "^7.0.0",
"conjecture": "^0.1.2",
"cross-spawn": "^7.0.3",
"egad": "^0.2.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.0.0",
"jsesc": "^3.0.1",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"npm": "^7.5.2",
"simple-git": "^2.32.0",
"stringify-author": "^0.1.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.0",
"@types/jsesc": "^3.0.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.kebabcase": "^4.1.6",
"@types/node": "^15.0.0",
"@types/npm": "^2.0.31",
"@types/rimraf": "^3.0.0",
"@types/shelljs": "^0.8.8",
"@types/validate-npm-package-name": "^3.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"shelljs": "^0.8.4",
"ts-node": "^10.0.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.2"
}
}