-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"name": "validation-output",
"version": "0.1.5",
"description": "Provides a way to show and style client side validation errors how you wish.",
"author": "Sander Visser <themastersleader@hotmail.com>",
"type": "module",
"main": "./validation-output.js",
"types": "./validation-output.d.ts",
"license": "MIT",
"homepage": "https://github.com/sandersander/validation-output",
"repository": {
"type": "git",
"url": "git+https://github.com/SanderSander/validation-output.git"
},
"keywords": [
"web components",
"validation",
"client side validation"
],
"files": [
"validation-output.d.ts",
"validation-output.js",
"validation-output.js.map"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint validation-output.ts",
"lint:fix": "eslint validation-output.ts --fix",
"format": "prettier --check validation-output.ts",
"format:fix": "prettier --write validation-output.ts",
"prepublishOnly": "npm run format && npm run lint && npm run build",
"preversion": "npm run format && npm run lint",
"postversion": "git push && git push --tags && npm publish"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}