-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 950 Bytes
/
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
{
"name": "velkro",
"version": "0.1.3",
"description": "Async/Await Module-based Node.js API Framework built on Koa (the successor to Express)",
"main": "lib/application.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch"
},
"repository": "rickyk586/velkro",
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"module"
],
"dependencies": {
"@koa/cors": "^2.2.1",
"debug": "^3.1.0",
"glob": "^7.1.2",
"jsonwebtoken": "^8.1.1",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-jwt": "^3.3.0",
"koa-router": "^7.3.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jest": "^22.1.4",
"supertest": "^3.0.0"
},
"engines": {
"node": ">= 7.6.0"
},
"files": [
"lib"
],
"jest": {
"testMatch": [
"**/test/tests/**/*.js"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
}
}