forked from gregbacchus/validata-koa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "validata-koa",
"version": "4.0.13",
"description": "Type safe data validation and sanitization for Koa",
"keywords": [
"typescript",
"type-safe",
"typesafe",
"typed",
"validate",
"validator",
"validation",
"clean",
"cleanse",
"sanitise",
"sanitize",
"data validator",
"data clean",
"data cleanse",
"object validator",
"request validator",
"koa"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:gregbacchus/validata-koa.git"
},
"scripts": {
"lint": "./node_modules/.bin/eslint src/ --ext .ts,.tsx",
"test": "./node_modules/.bin/jest --verbose --runInBand",
"test-coverage": "./node_modules/.bin/jest --verbose --coverage --runInBand",
"build": "rm -rf dist && ./node_modules/.bin/tsc --outDir dist --sourceMap",
"prepublishOnly": "npm run build && npm version patch",
"postpublish": "git push"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@geeebe/jest-bdd": "^1.0.14",
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.23",
"@types/koa-bodyparser": "^4.3.1",
"@types/node": "^15.12.4",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"faker": "^5.5.3",
"jest": "^27.0.5",
"koa-bodyparser": "^4.3.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.4",
"validator": "^13.6.0"
},
"dependencies": {
"@koa/router": "^10.0.0",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.4",
"koa": "^2.13.4",
"validata": "^4.0.17"
}
}