-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.72 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@rapidom/schema",
"version": "1.0.1",
"description": "RapidOM schema validator",
"license": "MIT",
"author": {
"name": "Ardalan Amini",
"email": "[email protected]",
"url": "https://ardalanamini.com"
},
"homepage": "https://schema.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/rapidom/schema.git"
},
"bugs": {
"url": "https://github.com/rapidom/schema/issues"
},
"keywords": [
"rapid",
"object",
"model",
"rapidom",
"javascript",
"typescript",
"schema",
"validation",
"default",
"required",
"array",
"min",
"max",
"length",
"items",
"boolean",
"date",
"number",
"port",
"integer",
"float",
"positive",
"negative",
"precision",
"multiple",
"multiplied",
"object",
"keys",
"unknown",
"string",
"token",
"alphanum",
"numeral",
"ip",
"ipv4",
"ipv6",
"email",
"credit",
"card",
"credit-card",
"regex",
"pattern",
"enum"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"lint": "eslint src __tests__",
"lint:fix": "npm run lint -- --fix",
"test": "node --expose-gc node_modules/jest/bin/jest --logHeapUsage",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run test:coverage -- --ci --runInBand --no-cache --verbose"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}