-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.29 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ynn",
"description": "Ynn is a framework for building more flexible and portable web applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/ynnjs/ynn.git"
},
"version": "0.1.14",
"keywords": [
"koa",
"mvc",
"framework",
"modules",
"ynn"
],
"devDependencies": {
"@lvchengbin/sleep": "0.0.2",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"jest-mock-console": "^1.0.1",
"max-listeners-exceeded-warning": "0.0.1",
"pre-commit": "^1.2.2",
"supertest": "^5.0.0-0"
},
"author": "LvChengbin <lvchengbin59@gmail.com>",
"license": "MIT",
"dependencies": {
"@lvchengbin/config": "0.0.2",
"@lvchengbin/is": "0.0.27",
"@lvchengbin/koa-router": "0.1.1",
"@lvchengbin/sequence": "^2.0.1",
"chalk": "^4.1.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-compose": "^4.1.0",
"koa-preuse": "0.0.0",
"koa-sham": "0.0.11",
"koa-static": "^5.0.0",
"request": "^2.88.2",
"stack-trace": "0.0.10",
"type-is": "^1.6.18",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"winston-transport": "^4.4.0",
"yargs": "^15.4.0",
"ynn-http-assert": "0.0.6"
},
"scripts": {
"test": "jest --forceExit",
"tw": "jest --watch",
"test-cov": "jest --coverage --runInBand --forceExit --detectOpenHandles",
"lint": "eslint lib --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"engines": {
"node": ">=8.0"
},
"bugs": {
"url": "https://github.com/ynnjs/ynn/issues"
},
"homepage": "https://github.com/ynnjs/ynn#readme",
"main": "index.js",
"files" : [
"index.js",
"lib"
],
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"jest": {
"testMatch": [
"**/test/**/*.spec.js"
],
"coverageReporters": [
"text-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"lib/**/*.js"
],
"testEnvironment": "node"
}
}