-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.22 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": "livr-extra-rules",
"version": "1.6.0",
"description": "Extra rules for LIVR Validator",
"main": "src/index.js",
"types": "types/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "ava && tsc --noEmit",
"coverage": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koorchik/js-livr-extra-rules.git"
},
"keywords": [
"Validation",
"LIVR",
"Schema",
"Validator",
"Rules"
],
"peerDependencies": {
"livr": "*"
},
"author": "koorchik",
"license": "MIT",
"bugs": {
"url": "https://github.com/koorchik/js-livr-extra-rules/issues"
},
"homepage": "https://github.com/koorchik/js-livr-extra-rules#readme",
"devDependencies": {
"ava": "^6.4.1",
"livr": "^2.9.0",
"typescript": "^5.9.3"
},
"ava": {
"files": [
"tests/*.js"
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 85,
"statements": 85,
"functions": 85,
"branches": 85,
"exclude": [
"tests/*.js"
]
}
}