-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 912 Bytes
/
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
{
"name": "koajs-cli",
"version": "1.0.4",
"description": "A simple CLI for scaffolding Koa.js projects.",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"test": "mocha"
},
"keywords": [
"koa",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Cherish-xzw/koajs-cli.git"
},
"author": "travisxu",
"license": "MIT",
"bin": {
"koa": "bin/koa",
"koa-init": "bin/koa-init",
"koa-list": "bin/koa-list"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.9.0",
"debug": "^3.1.0",
"download-git-repo": "^1.0.1",
"handlebars": "^4.0.11",
"inquirer": "^4.0.0",
"metalsmith": "^2.3.0",
"ora": "^1.3.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2",
"shelljs": "^0.7.7",
"user-home": "^2.0.0"
},
"devDependencies": {
"mocha": "^4.0.1"
}
}