-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
39 lines (39 loc) · 927 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
{
"name": "koa-generator",
"version": "1.1.17",
"description": "fullstack koa generator for koa 1.x and 2.x",
"main": "bin/koa",
"scripts": {
"start": "npm publish .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
},
"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.20.0",
"mkdirp": "0.5.1",
"sorted-object": "2.0.1"
},
"devDependencies": {
"mocha": "6.1.4",
"rimraf": "~2.6.3",
"supertest": "4.0.2"
},
"engines": {
"node": ">= 4.0"
}
}