-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "react-use-validator",
"version": "1.0.4",
"description": "A React Hook to handle form validation messages",
"keywords": [
"validation",
"react hooks"
],
"homepage": "https://github.com/ttoohey/react-use-validator",
"bugs": "https://github.com/ttoohey/react-use-validator/issues",
"license": "ISC",
"author": "Gency Digital (https://gency.com.au)",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ttoohey/react-use-validator.git"
},
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rm -rf dist *.tgz",
"prepare": "npm run clean && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1"
},
"dependencies": {
"validator-creator": "^1.1.3"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"babel": {
"comments": false,
"presets": [
"@babel/preset-env",
"minify"
]
}
}