-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.61 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "string-validators",
"version": "2.0.0",
"description": "Little Javascript / Typescript library for validating format of string like email, url, password...",
"type": "module",
"main": "dist/string-validators.js",
"module": "dist/string-validators.mjs",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:types": "npx -p typescript tsc src/index.ts --target esNext --declaration --allowJs --emitDeclarationOnly --allowSyntheticDefaultImports true --outDir dist/types",
"test": "vitest",
"test:watch": "set NODE_ENV=test && vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint src --fix",
"format": "prettier --write",
"prepare": "husky install"
},
"pre-commit": "lint-staged",
"keywords": [
"typescipt",
"vitest",
"string",
"validator",
"email",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jdelauney/string-validators.git"
},
"bugs": {
"url": "https://github.com/jdelauney/string-validators.git/issues"
},
"homepage": "https://github.com/jdelauney/string-validators.git#readme",
"author": "J.Delauney",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/eslint": "^8.4.6",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitest/coverage-c8": "^0.23.4",
"esbuild": "^0.15.10",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^3.1.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "^4.10.1",
"typescript": "^4.8.3",
"vitest": "^0.23.4"
},
"peerDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/eslint": "^8.4.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"vitest": "^0.23.4"
}
}