-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@microfleet/validation",
"description": "ajv-based validation utils for mservice architecture",
"version": "0.0.0-development",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/esm/index.mjs",
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"engines": {
"node": ">= 20.10.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"compile": "rimraf lib; tsc -b ./tsconfig.build.json && gen-esm-wrapper . ./lib/esm/index.mjs",
"prepublishOnly": "npm run compile",
"test": "npm run lint && tsimp --test __tests__/**.spec.ts",
"lint": "eslint --ext .ts -c .eslintrc.js src __tests__",
"semantic-release": "semantic-release",
"prepare": "mdep install"
},
"repository": {
"type": "git",
"url": "https://github.com/microfleet/validation.git"
},
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microfleet/validation/issues"
},
"homepage": "https://github.com/microfleet/validation#readme",
"devDependencies": {
"@makeomatic/deploy": "^13.0.5",
"@types/callsite": "^1.0.34",
"@types/common-errors": "^1.0.5",
"@types/debug": "^4.1.12",
"@types/glob": "^8.1.0",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"common-errors": "^1.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-makeomatic": "^6.0.0",
"gen-esm-wrapper": "^1.1.3",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"tsimp": "^2.0.10",
"typescript": "^5.3.3"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"callsite": "^1.0.0",
"debug": "^4.3.4",
"glob": "^10.3.10"
},
"peerDependencies": {
"common-errors": "~1.x.x"
},
"files": [
"lib/",
"src/"
]
}