forked from jksdua/koa-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "koa-framework",
"version": "6.0.2",
"description": "Dead simple framework on top of koa",
"main": "index.js",
"scripts": {
"test": "mocha --bail --harmony --reporter spec test.js",
"test-watch": "nodemon --exec \"npm test\"",
"validate": "rm -rf ./node_modules && npm cache clear && npm install",
"lint": "jshint ."
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/jksdua/koa-framework"
},
"engines": {
"node": ">=0.11.9"
},
"keywords": [
"koa",
"framework",
"http"
],
"author": "Jaap Karan Singh <jksdua@gmail.com>",
"license": "MIT",
"dependencies": {
"jsonschema": "~1.0.0",
"jsonschema-extra": "^1.0.2",
"koa": "^0.21.0",
"koa-body-parser": "~1.1.0",
"koa-cors": "0.0.16",
"koa-gzip": "^0.1.0",
"koa-helmet": "^0.2.0",
"koa-json-logger": "0.0.22",
"koa-no-cache": "^1.1.0",
"koa-router": "^5.0.1",
"koa-x-request-id": "^1.1.0",
"lodash": "^3.10.1",
"vitalsigns": "^0.4.3",
"vitalsigns-koa": "^1.1.0"
},
"devDependencies": {
"chai": "*",
"chai-datetime": "^1.4.0",
"jshint": "*",
"mocha": "^2.2.5",
"precommit-hook": "*",
"request": "*"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}