-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "input-validity",
"version": "0.2.0",
"description": "Enhanced HTML5 input validation",
"main": "dist/iife/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"keywords": [
"input validation",
"form",
"validation",
"form validation",
"HTML5 validation",
"constraint validation"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format esm,cjs,iife --dts --global-name InputValidity --minify --target=es5 --legacy-output",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartoszkrawczyk2/input-validity.git"
},
"author": "Bartosz Krawczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartoszkrawczyk2/input-validity/issues"
},
"homepage": "https://input-validity.pages.dev",
"devDependencies": {
"@swc/core": "^1.4.8",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}