-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "form-authority",
"version": "1.0.0",
"description": "A lightweight hook to handle React forms validation !",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist",
"test": "jest",
"coverage": "jest --coverage && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexnguetcha/form-authority.git"
},
"keywords": [
"form",
"react form",
"hook",
"form validation",
"validate form",
"react form",
"use form"
],
"author": "alexnguetcha <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexnguetcha/form-authority/issues"
},
"homepage": "https://github.com/alexnguetcha/form-authority#readme",
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/validator": "^13.7.14",
"coverage": "^0.4.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"typescript": "^5.0.3"
},
"dependencies": {
"validator": "^13.9.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}