-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.74 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
{
"name": "koa-parser",
"version": "1.0.8",
"description": "a body parser for koa",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"screenshot/"
],
"scripts": {
"start": "npm run dev",
"dev": "npm run clean && tsc -p ./tsconfig.dev.json && node ./.cache/server.js",
"build": "npm run lint && npm run clean && tsc -p ./tsconfig.json",
"lint": "eslint . --ext .js,.ts --fix",
"clean": "rimraf lib .cache",
"test": "jest --config jest.config.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nashaofu/koa-parser.git"
},
"keywords": [
"koa",
"koa-body",
"koa-parser",
"koa-middleware",
"typescript"
],
"author": "nashaofu",
"license": "MIT",
"bugs": {
"url": "https://github.com/nashaofu/koa-parser/issues"
},
"homepage": "https://github.com/nashaofu/koa-parser#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"co-body": "^6.0.0",
"formidable": "^1.2.1"
},
"devDependencies": {
"@types/co-body": "0.0.3",
"@types/formidable": "^1.0.31",
"@types/jest": "^24.0.18",
"@types/koa": "^2.0.49",
"@types/koa-logger": "^3.1.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"koa": "^2.8.1",
"koa-logger": "^3.2.1",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}