forked from i5ting/koa-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 947 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 947 Bytes
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
{
"name": "koa-generator",
"version": "1.1.5",
"description": "fullstack koa generator for koa 1.x and 2.x",
"main": "index.js",
"scripts": {
"start": "npm publish .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
},
"main": "bin/koa",
"preferGlobal": true,
"bin": {
"koa": "./bin/koa",
"koa2": "./bin/koa2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/17koa/koa-generator.git"
},
"author": "i5ting",
"license": "MIT",
"bugs": {
"url": "https://github.com/17koa/koa-generator/issues"
},
"homepage": "https://github.com/17koa/koa-generator#readme",
"dependencies": {
"commander": "2.7.1",
"mkdirp": "0.5.1",
"sorted-object": "1.0.0"
},
"devDependencies": {
"mocha": "2.2.5",
"rimraf": "~2.2.8",
"supertest": "1.0.1"
},
"engines": {
"node": ">= 4.0"
}
}