This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
{
"name": "validatus",
"version": "0.0.1",
"description": "An easy to use, declarative and light-weight form validation library with zero dependencies",
"author": "John Tsevdos <[email protected]> (http://tsevdos.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsevdos/validatus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tsevdos/validatus"
},
"main": "dist/validatus.js",
"module": "src/index.js",
"homepage": "https://github.com/tsevdos/validatus",
"scripts": {
"start": "webpack-dev-server --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"lint": "eslint ./src/**/*.js ./examples/**/*.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --ignore-path .gitignore -c \"./src/**\"",
"prettier:format": "prettier --write \"./src/**/**\"",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"validate": "npm-run-all --parallel lint prettier test",
"stats": "webpack --config ./webpack/webpack.prod.js --profile --json > stats.json"
},
"files": [
"dist/**/*",
"README.md"
],
"targets": {
"node": ">=4"
},
"keywords": [
"validator",
"validation",
"validate",
"field-validation",
"form",
"forms",
"input",
"strings",
"functional programming",
"fp"
],
"dependencies": {
"core-js": "3.6.4"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/preset-env": "7.8.4",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "^7.18.0",
"html-webpack-plugin": "3.2.0",
"husky": "4.2.1",
"jest": "25.1.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-merge": "4.2.2"
}
}