-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "koa-architect",
"version": "1.0.9",
"homepage": "https://github.com/nervgh/koa-architect",
"description": "Automates mounting and routing",
"main": "lib/architect.js",
"repository": "nervgh/koa-architect",
"author": {
"name": "Alexander Zaytsev",
"email": "nervgh@gmail.com",
"url": "https://github.com/nervgh"
},
"engines": {
"node": ">=7"
},
"dependencies": {
"koa-mount": "^3.0.0",
"koa-trie-router": "^2.1.4"
},
"devDependencies": {
"istanbul": "^0.4.5",
"koa": "^2.2.0",
"mocha": "^3.2.0",
"supertest": "^3.0.0"
},
"keywords": [
"architect",
"architector",
"mount",
"mounting",
"route",
"routing",
"router",
"automate",
"automation",
"middleware"
],
"files": [
"lib"
],
"scripts": {
"test": "mocha",
"test-cov": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --reporter dot",
"test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly"
},
"license": "MIT"
}