-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mu-koan",
"version": "2.1.5-dev",
"codename": "Zionist Zabuton",
"description": "An opinionated Koa v2 JSON API boilerplate to achieve enlightenment",
"author": "Nicolás Fantone <nfantone@gmail.com> (https://github.com/nfantone)",
"main": "index.js",
"license": "MIT",
"files": [
"index.js",
"lib/",
"favicon.ico"
],
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "gulp",
"test": "gulp test",
"validate": "gulp validate",
"coverage": "gulp coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:nfantone/mu-koan.git"
},
"keywords": [
"koa",
"koa2",
"api",
"json",
"boilerplate",
"starter",
"scaffolding",
"enlightenment"
],
"dependencies": {
"kcors": "^2.1.1",
"koa-bodyparser": "^4.2.0",
"koa-cache-control": "^2.0.0",
"koa-compress": "^2.0.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-favicon": "^2.0.0",
"koa-helmet": "^4.0.0",
"koa-json": "^2.0.2",
"koa-json-error": "^3.1.0",
"koa-jwt": "^3.0.1",
"koa-load-middlewares": "^1.0.0",
"koa-morgan": "^1.0.1",
"koa-response-time": "^2.0.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.omit": "^4.5.0",
"mu-koan-logger": "^1.0.2"
},
"peerDependencies": {
"koa": "^2.2.0"
},
"devDependencies": {
"eslint": "^4.1.0",
"eslint-config-semistandard": "^8.0.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.0",
"gulp": "^3.9.1",
"gulp-codecov": "^2.0.2",
"gulp-eslint": "^3.0.1",
"gulp-exit": "0.0.2",
"gulp-if": "^2.0.2",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^4.1.0",
"gulp-release": "^1.1.1",
"gulp-util": "^3.0.8",
"pre-commit": "^1.2.2",
"should": "^12.0.0"
},
"pre-commit": [
"validate"
]
}