-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"name": "create-koa2-app",
"description": "Koa 2 application generator",
"version": "1.0.3",
"author": "Andrew Avdeev <andrewww.avdeev@gmail.com>",
"keywords": [
"koa2",
"create-app",
"framework",
"starter-kit",
"boilerplate",
"web",
"rest",
"restful",
"router",
"app",
"api",
"mongodb",
"mysql",
"redis",
"postgresql"
],
"repository": "aandrewww/create-koa2-app",
"license": "MIT",
"dependencies": {
"commander": "2.13.0",
"ejs": "2.5.7",
"minimatch": "3.0.4",
"mkdirp": "0.5.1",
"prompts": "^0.1.8",
"sorted-object": "2.0.1"
},
"main": "bin/run.js",
"bin": {
"create-koa2-app": "./bin/run.js"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"prettier": "^1.5.3"
},
"engines": {
"node": ">= 7.6"
},
"files": ["LICENSE", "bin/", "templates/"],
"scripts": {
"lint": "eslint -c ./.eslintrc .",
"test": "echo 'All ok!'",
"test-ci": "echo 'All ok!'"
}
}