This repository was archived by the owner on Apr 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.22 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.22 KB
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
{
"name": "koa2-generator",
"version": "1.1.7",
"description": "Koa2' application generator",
"author": "tomoat",
"contributors": [],
"main": "bin/koa2",
"preferGlobal": true,
"bin": {
"koa2": "./bin/koa2"
},
"scripts": {
"test": "mocha --reporter spec --bail test/cmd.js",
"test-ci": "mocha --reporter spec test/cmd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomoat/koa2-generator.git"
},
"keywords": [
"koa2",
"framework",
"web",
"rest",
"restful",
"app",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tomoat/koa2-generator/issues"
},
"homepage": "https://github.com/tomoat/koa2-generator#readme",
"dependencies": {
"commander": "^2.10.0",
"mkdirp": "^1.0.0",
"sorted-object": "^2.0.1"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-eslint": "^7.2.3",
"bluebird": "^3.5.0",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.6.0",
"execa": "^0.8.0",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"supertest": "^3.0.0",
"validate-npm-package-name": "^3.0.0"
},
"engines": {
"node": ">=7.6.0"
},
"files": [
"LICENSE",
"bin/",
"templates/"
]
}