This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "bootstrap-validate",
"description": "A simple Form Validation Utility for Bootstrap 3, Bootstrap 4, and Bootstrap 5 for Humans.",
"version": "v2.2.6",
"sideEffects": false,
"homepage": "https://bootstrap-validate.js.org",
"main": "dist/bootstrap-validate.js",
"module": "src/bootstrap-validate.js",
"repository": "git@github.com:PascaleBeier/bootstrap-validate.git",
"author": "Pascale Beier <mail@pascalebeier.de>",
"keywords": [
"bootstrap",
"bootstrap3",
"bootstrap-3",
"bootstrap4",
"bootstrap-4",
"bootstrap5",
"bootstrap-5",
"validation",
"form",
"validate",
"form-validation"
],
"license": "MIT",
"scripts": {
"dev": "webpack -w",
"build": "webpack",
"check-style": "eslint webpack.config.js src/ tests/",
"fix-style": "eslint --fix webpack.config.js src/ tests/",
"test": "npm run test-unit",
"test-unit": "jest",
"coverage-unit": "jest --coverage",
"docs": "npm run docs-build",
"docs-build": "hugo --cleanDestinationDir",
"docs-compile": "npm run docs-build",
"docs-serve": "hugo server --disableFastRender"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"babel-loader": "8.2.3",
"eslint": "8.10.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"hugo-bin": "0.81.1",
"jest": "27.5.1",
"prettier": "2.5.1",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
},
"dependencies": {
"@babel/runtime": "7.17.2",
"big.js": "6.1.1",
"lodash": "4.17.21"
},
"hugo-bin": {
"buildTags": "extended"
},
"jest": {
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.[jt]sx?$"
}
}