-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.15 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@koex/body",
"version": "0.0.8",
"description": "body parser for koa extend",
"main": "lib/index.js",
"module": "lib/index.js",
"repository": "https://github.com/koexjs/body",
"homepage": "https://github.com/koexjs/body",
"bugs": {
"url": "https://github.com/koex/body/issues"
},
"engines": {
"node": ">=8.0.0"
},
"author": "Zero <uniquecolesmith@gmail.com> (https://moeover.com)",
"license": "MIT",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf -rf lib",
"test": "jest",
"coverage": "jest && codecov",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@koex/onerror": "^0.0.1",
"@koex/router": "^0.0.1",
"@types/co-body": "^0.0.3",
"@types/jest": "^23.3.12",
"@types/koa": "^2.0.47",
"@types/node": "^10.9.4",
"@types/supertest": "^2.0.7",
"codecov": "^3.1.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"koa": "^2.6.2",
"rimraf": "^2.6.2",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-jsdoc-rules": "^0.1.2",
"typescript": "^3.2.1"
},
"keywords": [
"koa",
"urlencode",
"multipart",
"json",
"body",
"parser",
"form",
"koex"
],
"files": [
"lib/"
],
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"jest": {
"roots": [
"test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test/.*\\.spec\\.(ts|tsx)$",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 90,
"lines": 90,
"statements": -10
}
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/formidable": "^1.0.31",
"@zcorky/is": "^1.0.6",
"co-body": "^6.0.0",
"formidable": "^1.2.1"
}
}