-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.24 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
50
51
52
53
54
55
{
"name": "nodejs-validate",
"version": "0.0.2",
"description": "This is nodejs validater middleware build from validator.js",
"main": "index.ts",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --require ts-node/register --watch-extensions ts,tsx test/**/*.{ts,tsx} [...args]",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kemboijs/kemboijs-validator.git"
},
"keywords": [
"nodejs",
"validator",
"validatorjs",
"kemboijs",
"nodejs",
"middleware"
],
"author": "Ezrqn Kemboi <ezrqnkemboi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kemboijs/kemboijs-validator/issues"
},
"homepage": "https://github.com/kemboijs/kemboijs-validator#readme",
"dependencies": {
"validator": "^13.0.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"files": [
"lib/",
"README.md",
"LICENCE",
"index.ts"
],
"nyc": {
"all": true,
"include": [
"lib/**"
],
"extension": [
".ts",
".tsx"
]
}
}