-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.16 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
{
"name": "@nswbmw/kless",
"description": "A framework inspired by FaaS, based on `koa`.",
"version": "2.3.3",
"main": "Kless.js",
"scripts": {
"test": "jest"
},
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"koa",
"FaaS",
"serverless"
],
"dependencies": {
"another-json-schema": "^4.0.0",
"@nswbmw/koa": "*",
"koa-compose": "4.1.0",
"object-path": "0.11.8",
"require-directory": "2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/nswbmw/kless"
},
"license": "MIT",
"engines": {
"node": ">= 12"
},
"devDependencies": {
"eslint": "8.40.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"jest": "29.7.0",
"koa-bodyparser": "4.4.1",
"supertest": "7.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/controller",
"__tests__/service",
"__tests__/route",
"/node_modules/"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}