-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.48 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
{
"name": "another-use-form-hook",
"version": "0.0.0-semantically-released",
"maintainers": [
{
"name": "Balázs Orbán",
"email": "[email protected]",
"url": "https://balazsorban.com"
}
],
"keywords": [
"react",
"hook",
"form",
"validation"
],
"description": "A React hook 🎣 for easy form handling",
"main": "dist/index.js",
"module": "dist/another-use-form-hook.esm.js",
"types": "typings/index.d.ts",
"author": "Balázs Orbán <[email protected]> (https://balazsorban.com)",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": ">=16.12"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"use-deep-compare-effect": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.19",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^25.1.0",
"kcd-scripts": "^5.0.0",
"react": "^16.11.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"semantic-release": "^17.0.2"
},
"scripts": {
"build": "kcd-scripts build && kcd-scripts build --bundle --no-clean",
"publish:alpha": "yarn build; npm publish --tag alpha",
"validate": "kcd-scripts validate",
"test": "kcd-scripts test --verbose",
"test:coverage": "yarn test --coverage --coverageReporters html --watchAll",
"semantic-release": "semantic-release",
"setup": "npm install && npm run validate -s"
},
"files": [
"dist",
"typings"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/balazsorban44/use-form/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/balazsorban44/use-form.git"
},
"homepage": "https://github.com/balazsorban44/use-form#readme",
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"regenerator-runtime/runtime"
],
"collectCoverageFrom": [
"src/**/{!(test-utils|index),}.js",
"!src/**/*mock.js"
],
"testPathIgnorePatterns": [
"mock"
]
}
}