-
Notifications
You must be signed in to change notification settings - Fork 403
/
package.json
75 lines (75 loc) · 1.77 KB
/
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
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
{
"name": "@client-side-validations/client-side-validations",
"description": "Client Side Validations made easy for your Rails 6.1, 7.x, and 8.0 applications",
"repository": {
"type": "git",
"url": "git+https://github.com/DavyJonesLocker/client_side_validations.git"
},
"keywords": [
"rails",
"browser",
"client side validations"
],
"author": "Geremia Taglialatela <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/DavyJonesLocker/client_side_validations/issues"
},
"homepage": "https://github.com/DavyJonesLocker/client_side_validations",
"scripts": {
"build": "rollup -c",
"test": "test/javascript/run-qunit.mjs"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"chrome-launcher": "^1.1.2",
"eslint": "^9.14.0",
"neostandard": "^0.11.7",
"puppeteer-core": "^23.7.1",
"rollup": "^4.25.0",
"rollup-plugin-copy": "^3.5.0"
},
"peerDependencies": {
"jquery": ">= 1.12.4 < 4.0.0"
},
"main": "dist/client-side-validations.js",
"module": "dist/client-side-validations.esm.js",
"engines": {
"node": ">= 18.12"
},
"packageManager": "pnpm@^9.12.1",
"browserslist": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"files": [
"dist",
"src/**/*.js"
],
"standard": {
"ignore": [
"/dist/",
"/gemfiles/",
"/test/",
"/vendor/"
]
},
"version": "0.4.0",
"directories": {
"lib": "lib",
"test": "test"
}
}