forked from m10rten/validatees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
{
"name": "validatees",
"version": "1.1.0",
"description": "✅ Validation library for ES6+ modules",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src --ext .ts",
"cli:check:ci": "npx ts-node ./check-ci-version.ts",
"replace": "npx ts-node replace-script-notation.ts"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/m10rten/validatees.git"
},
"keywords": [
"validation",
"validate",
"validatees",
"javascript",
"ES",
"typescript",
"node",
"falsy",
"truthy",
"nullish",
"matchers",
"types",
"email",
"password",
"url",
"cli",
"ES6",
"date"
],
"bin": {
"validatees-cli": "./dist/cli/index.js"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/m10rten/validatees/issues"
},
"homepage": "https://github.com/m10rten/validatees#readme",
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16.17.0",
"npm": ">=8.0.0"
}
}