-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.38 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
{
"name": "micro-ajv",
"version": "0.1.2",
"description": "An Ajv (Another JSON Schema Validator) middleware for Micro to validate request body, query parameters and etc.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/igat64/micro-ajv"
},
"scripts": {
"test": "jest"
},
"jest": {
"clearMocks": true,
"testEnvironment": "node"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"es6": true
},
"extends": [
"plugin:prettier/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"concurrent": false
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"semi": false
},
"keywords": [
"ajv",
"micro",
"middleware"
],
"author": "Igor Atroshkin",
"license": "MIT",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^2.2.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0"
},
"dependencies": {
"ajv": "^6.10.0",
"micro": "^9.3.4"
}
}