-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 899 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 899 Bytes
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
{
"name": "koa-test-stack",
"version": "0.0.0-7",
"description": "single interface wrapper around koa-compose and co, to test koa middleware(s)",
"main": "index.js",
"scripts": {
"test": "ava spec.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renegare/koa-test-stack.git"
},
"keywords": [
"koa",
"test",
"middleware",
"helper"
],
"author": "Mudi <mudi@renegare.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/renegare/koa-test-stack/issues"
},
"homepage": "https://github.com/renegare/koa-test-stack#readme",
"devDependencies": {
"ava": "^0.14.0",
"bluebird": "^3.3.4",
"chai": "^3.5.0",
"nodemon": "^1.9.1",
"sinon": "^1.17.3",
"standard": "^6.0.8",
"tap": "^5.7.0"
},
"dependencies": {
"co": "^4.6.0",
"koa-compose": "^2.4.0"
}
}