forked from Turee/koa-yup-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "koa-yup-validator",
"version": "4.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/Turee/koa-yup-validator.git",
"private": false,
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.2",
"@types/koa-router": "^7.4.4",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"@types/supertest": "^2.0.11",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-junit": "^12.2.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"lodash": "^4.17.21",
"prettier": "2.3.2",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5",
"yup": "^0.32.9"
},
"scripts": {
"test": "jest --coverage --verbose",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:ci": "JEST_JUNIT_OUTPUT='reports/junit/js-test-results.xml' jest --ci --coverage --verbose --reporters=default --reporters=jest-junit",
"watch": "jest -w",
"build": "rimraf lib && tsc",
"prepublish": "yarn run build"
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"lodash.merge": "^4.6.2"
}
}