-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.06 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
{
"name": "@lvchengbin/koa-router",
"description": "Koa router middleware",
"repository": "[email protected]:LvChengbin/koa-router.git",
"version": "0.1.1",
"keywords": [
"koa",
"middleware",
"router",
"route"
],
"files": [
"index.js"
],
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"jest": "^23.6.0",
"koa": "^2.5.1",
"nodemon": "^1.14.11",
"pre-commit": "^1.2.2",
"supertest": "^3.1.0"
},
"author": "LvChengbin",
"license": "MIT",
"dependencies": {
"@lvchengbin/is": "0.0.24",
"path-to-regexp": "^2.1.1"
},
"scripts": {
"test": "jest --forceExit",
"tw": "jest --watchAll",
"test-watch": "jest --watch",
"test-cov": "jest --coverage --runInBand --forceExit --detectOpenHandles",
"lint": "eslint ./ --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"jest": {
"testMatch": [
"**/test/**/*.spec.js"
],
"coverageReporters": [
"text-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"index.js"
],
"testEnvironment": "node"
}
}