-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "create-cli-application",
"version": "0.9.1",
"description": "A bootstrapper for creating a cli application with Node.",
"bin": {
"create-cli-application": "./index.js"
},
"main": "index.js",
"files": [
"build"
],
"scripts": {
"build": "rimraf build && tsc && copyfiles -u 1 \"src/template/**/*\" build",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexlee-dev/create-cli-application.git"
},
"keywords": [
"cli",
"tool",
"application",
"menu"
],
"author": "Alex Lee (www.alexlee.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexlee-dev/create-cli-application/issues"
},
"homepage": "https://create-cli-application.herokuapp.com/",
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/commander": "^2.12.2",
"@types/configstore": "^4.0.0",
"@types/copyfiles": "^2.2.0",
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^6.5.0",
"@types/node": "^14.0.5",
"@types/semver": "^7.2.0",
"@types/update-notifier": "^4.1.0",
"@types/validate-npm-package-name": "^3.0.0",
"@types/yargs": "^15.0.5",
"copyfiles": "^2.2.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.3"
},
"dependencies": {
"@sentry/node": "^5.15.5",
"boxen": "^5.0.1",
"chalk": "^4.0.0",
"clear": "^0.1.0",
"commander": "^5.1.0",
"configstore": "^5.0.1",
"fs-extra": "^9.0.0",
"inquirer": "^7.1.0",
"ora": "^4.0.4",
"semver": "^7.3.2",
"update-notifier": "^4.1.0",
"validate-npm-package-name": "^3.0.0"
}
}