-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "@awerlogus/validators",
"version": "2.0.2",
"description": "Data validators library",
"author": "awerlogus",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/awerlogus/validators.git"
},
"bugs": {
"url": "https://github.com/awerlogus/validators/issues"
},
"homepage": "https://github.com/awerlogus/validators/#readme",
"keywords": [
"nodejs",
"data",
"validators",
"validator",
"validation"
],
"files": [
"lib/"
],
"devDependencies": {
"@types/jest": "^26.0.24",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"typescript": "5.3.0-dev.20231008"
},
"dependencies": {
"@awerlogus/data-types": "2.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npx jest --coverage && rm coverage -rf",
"check": "npm test && tsc && npx eslint lib"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}