-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "@client-side-validations/simple-form",
"description": "Client Side Validations Simple Form plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/DavyJonesLocker/client_side_validations-simple_form.git"
},
"keywords": [
"rails",
"browser",
"client side validations",
"simple form"
],
"author": "Geremia Taglialatela <tagliala.dev@gmail.com>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/DavyJonesLocker/client_side_validations-simple_form/issues"
},
"homepage": "https://github.com/DavyJonesLocker/client_side_validations-simple_form",
"scripts": {
"build": "rolldown -c",
"lint": "oxlint --deny-warnings --ignore-pattern=coverage --ignore-pattern=dist --ignore-pattern=gemfiles --ignore-pattern=test --ignore-pattern=vendor",
"test": "test/javascript/run-qunit.mjs"
},
"devDependencies": {
"chrome-launcher": "^1.2.1",
"oxlint": "^1.0.0",
"puppeteer-core": "^25.1.0",
"rolldown": "^1.0.0"
},
"peerDependencies": {
"@client-side-validations/client-side-validations": ">=25.0.0"
},
"main": "dist/simple-form.js",
"module": "dist/simple-form.esm.js",
"engines": {
"node": ">= 18.12"
},
"packageManager": "pnpm@10.10.0",
"browserslist": [
">= 0.5%",
"last 2 major versions",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"iOS >= 12",
"Safari >= 12"
],
"files": [
"dist",
"src/**/*.js"
],
"version": "19.0.0",
"directories": {
"lib": "lib",
"test": "test"
}
}