-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.46 KB
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
{
"name": "express-validata",
"version": "0.1.3",
"description": "An efficient joi validator middleware",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run code:lint",
"preversion": "npm run code:lint",
"version": "npm run code:format && git add -A src",
"postversion": "git push && git push --tags",
"code:check": "yarn code:lint; yarn code:format --check",
"code:clean": "yarn code:lint --fix; yarn code:format --write",
"code:lint": "eslint --ext .js,.jsx,.ts,.tsx \"src/\"",
"code:format": "prettier './src/**/**.{js,jsx,ts,tsx}'",
"code:check:rules": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"keywords": [
"validata",
"joi",
"express",
"hapi",
"express validata",
"express-validator"
],
"author": "Oluwatobi Adeshina",
"repository": {
"type": "git",
"url": "https://github.com/drtobbyas/express-validata.git"
},
"homepage": "https://github.com/drtobbyas/express-validata#readme",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.4",
"jest": "^26.1.0",
"poetic": "^1.5.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"files": [
"lib/**/*"
]
}