-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "stimulus-file-input-validator",
"version": "1.1.0",
"description": "Client side file input validations for files size and extension",
"keywords": [
"stimulus",
"stimulusjs",
"stimulus controller",
"file input validator"
],
"type": "module",
"main": "dist/file-input-validator.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/file-input-validator.js",
"require": "./dist/file-input-validator.umd.cjs"
}
},
"files": [
"dist"
],
"repository": "git@github.com:martinnicolas/stimulus-file-input-validator.git",
"bugs": {
"url": "https://github.com/martinnicolas/stimulus-file-input-validator/issues"
},
"author": "martinnicolas <ttincho77@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/martinnicolas/stimulus-file-input-validator",
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.18.0",
"@hotwired/stimulus": "^3.2.2",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.21.0",
"vite": "^5.4.10"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"types": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types",
"dev": "vite",
"prod": "vite build --mode netlify",
"build": "vite build && yarn types",
"preview": "vite preview",
"lint": "yarn eslint"
}
}