-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
{
"name": "use-validatorjs",
"version": "0.2.0",
"description": "Tiny laravel-like data validator for react.",
"main": "lib",
"module": "lib/esm",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"format": "prettier --write src",
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"build:cjs": "tsc -m commonjs --declarationDir lib --outDir lib",
"build:esm": "tsc -m esNext --declarationDir lib/esm --outDir lib/esm",
"build": "npm run build:types && npm run build:cjs && npm run build:esm",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src test"
},
"keywords": [
"react",
"hook",
"validation",
"data validator",
"validator",
"laravel",
"validatorjs",
"laravel-validator-for-react",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zamarawka/use-validatorjs.git"
},
"author": "zamarawka <somebody.told@mail.ru> (https://github.com/zamarawka)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zamarawka/use-validatorjs/issues"
},
"homepage": "https://github.com/zamarawka/use-validatorjs#readme",
"peerDependencies": {
"react": ">= 16.8.0"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**.*"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"dependencies": {}
}