-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.53 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
{
"name": "@client-side-validations/yup",
"description": "Client Side Validations Yup plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/DavyJonesLocker/client_side_validations-yup.git"
},
"keywords": [
"rails",
"browser",
"client side validations",
"yup"
],
"author": "Geremia Taglialatela <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/DavyJonesLocker/client_side_validations-yup/issues"
},
"homepage": "https://github.com/DavyJonesLocker/client_side_validations-yup",
"scripts": {
"build": "standard --verbose && rollup -c",
"test": "test/javascript/run-qunit.js"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"chrome-launcher": "^0.13.4",
"puppeteer-core": "^5.2.1",
"rollup": "^2.26.10",
"rollup-plugin-copy": "^3.3.0",
"standard": "^14.3.4"
},
"peerDependencies": {
"@client-side-validations/client-side-validations": "^0.1.0",
"jquery": ">= 1.12.4 < 4.0.0"
},
"main": "dist/yup.js",
"module": "dist/yup.esm.js",
"engines": {
"node": ">=6.0.0",
"yarn": ">=0.25.2"
},
"browserslist": [
">= 1%",
"IE >= 8"
],
"files": [
"dist"
],
"standard": {
"ignore": [
"/dist/",
"/gemfiles/",
"/test/",
"/vendor/"
]
},
"version": "0.0.1",
"directories": {
"lib": "lib",
"test": "test"
}
}