This repository has been archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-validatus",
"version": "0.1.1",
"description": "A simple to use and light-weight React validator component",
"main": "dist/Validatus.js",
"homepage": "https://github.com/tsevdos/react-validatus",
"engines": {
"node": ">=4"
},
"scripts": {
"start": "webpack-dev-server --config ./dev.config.js --mode development --hot --inline --port 3000",
"test": "jest",
"build": "webpack --mode production --config ./prod.config.js",
"prepublish": "rm -rf ./dist && npm run lint && npm test && npm run build",
"stats": "webpack --json > stats.json",
"lint": "eslint src/**/*.js examples/**/*.js",
"lint:fix": "npm run lint -- --fix",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"preversion": "npm run prepublish"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"react",
"validator",
"validation",
"component",
"validate",
"field-validation",
"form",
"forms",
"input",
"render-prop"
],
"author": "John Tsevdos <tsevdosjohn@gmail.com> (http://tsevdos.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsevdos/react-validatus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tsevdos/react-validatus"
},
"peerDependencies": {
"react": ">= 15.x"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"eslint": "5.10.0",
"eslint-plugin-react": "7.11.1",
"jest": "23.6.0",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-testing-library": "5.4.0",
"regenerator-runtime": "0.13.1",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"validator": "10.9.0",
"prop-types": "15.6.2"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"modulePaths": [
"<rootDir>/src/"
],
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
}
}