-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "koa-typed-body-parser",
"version": "0.0.5",
"description": "Uses Ajv compiled parsers based on JTD schemas to parse koa request JSON body",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"prettier:write": "prettier --write './**/*.{json,yaml,js,ts}'",
"test": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/epoberezkin/koa-typed-body-parser.git"
},
"keywords": [
"koa",
"body-parser",
"jtd",
"ajv"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/koa-typed-body-parser/issues"
},
"homepage": "https://github.com/epoberezkin/koa-typed-body-parser#readme",
"peerDependencies": {
"ajv": "^8.5.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
},
"dependencies": {
"co-body": "^6.1.0"
},
"devDependencies": {
"@types/co-body": "^5.1.0",
"@types/koa": "^2.13.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"ajv": "^8.5.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"koa": "^2.13.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{json,yaml,js,ts}": "prettier --write"
}
}