-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "livr",
"version": "2.10.2",
"description": "Lightweight validator supporting Language Independent Validation Rules Specification",
"homepage": "https://github.com/koorchik/js-validator-livr",
"author": {
"name": "koorchik",
"url": "https://github.com/koorchik"
},
"license": "MIT",
"main": "./lib/LIVR.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./lib/LIVR.js",
"import": "./lib/LIVR.js"
},
"./types/inference": {
"types": "./types/inference.d.ts"
}
},
"scripts": {
"test": "nyc ava && tsc --noEmit",
"bench": "node benchmarks/bench.js",
"build-sync:min": "webpack --entry ./scripts/browser_build_entry-sync.js --mode production -o ./dist/production/",
"build-sync:debug": "webpack --entry ./scripts/browser_build_entry-sync.js --mode development -o ./dist/development/",
"build-async:min": "webpack --entry ./scripts/browser_build_entry-async.js --mode production -o ./dist/production-async/",
"build-async:debug": "webpack --entry ./scripts/browser_build_entry-async.js --mode development -o ./dist/development-async/",
"build": "npm run build-sync:min && npm run build-sync:debug && npm run build-async:min && npm run build-async:debug"
},
"repository": {
"type": "git",
"url": "https://github.com/koorchik/js-validator-livr.git"
},
"bugs": {
"url": "https://github.com/koorchik/js-validator-livr/issues"
},
"keywords": [
"validator",
"validation",
"livr",
"schema",
"sanitize"
],
"devDependencies": {
"ava": "^6.4.1",
"benchmark": "^2.1.4",
"nyc": "^17.1.0",
"typescript": "^5.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"ava": {
"files": [
"t/tests-sync/*.js",
"t/tests-async/*.js"
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"exclude": [
"t/**/*.js"
]
}
}