-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.43 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
{
"name": "express-ajv",
"version": "1.0.0",
"description": "Ajv middleware for express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p test/tsconfig.test.json -t codeFrame",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run build",
"postversion": "publish-to-git --force",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tinadim/express-ajv.git"
},
"keywords": [
"express",
"node",
"typescript",
"ajv"
],
"author": "Bernardo Reis",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tinadim/express-ajv/issues"
},
"homepage": "https://github.com/Tinadim/express-ajv#readme",
"files": [
"dist"
],
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/supertest": "^2.0.9",
"ajv": "^6.12.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^25.5.1",
"npm": "^6.14.5",
"publish-to-git": "^1.1.8",
"supertest": "^4.0.2",
"ts-jest": "^25.5.1",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"ajv": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.test.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"resetMocks": true,
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testEnvironment": "node"
}
}