-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.07 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
{
"name": "koa-gen",
"version": "1.2.3",
"description": "Koa' application generator for Koa v1.x and v2.x",
"main": "bin/koa",
"scripts": {
"test": "mocha --globals hasCert --reporter spec --bail test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
},
"preferGlobal": true,
"bin": {
"koa": "./bin/koa"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominhhai/koa-generator.git"
},
"author": "Do Minh Hai",
"license": "MIT",
"bugs": {
"url": "https://github.com/dominhhai/koa-generator/issues"
},
"homepage": "https://github.com/dominhhai/koa-generator#readme",
"keywords": [
"koa",
"framework",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"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"
},
"files": [
"LICENSE",
"bin/",
"templates1/",
"templates2/"
],
"engines": {
"node": ">= 4.0"
}
}