-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.24 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@byteclaw/forms",
"description": "Easily built forms in React using Hooks API",
"version": "1.2.0",
"license": "MIT",
"keywords": [
"form",
"forms",
"react",
"react-dom",
"validation",
"hooks"
],
"bugs": {
"url": "https://github.com/byteclaw/forms/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byteclaw/forms.git"
},
"contributors": [
{
"name": "Michal Kvasničák",
"url": "https://github.com/michalkvasnicak"
},
{
"name": "Juraj Hríb",
"url": "https://github.com/jurajhrib"
}
],
"unpkg": "dist/index.umd.js",
"main": "dist/index.js",
"jsnext:main": "dist/index.modern.js",
"module": "dist/index.modern.js",
"types": "dist/index.d.js",
"files": [
"dist",
"src",
"!__tests__"
],
"dependencies": {
"@types/react": "^16.8.23",
"@types/yup": "^0.26.22",
"react-fast-compare": "^2.0.4"
},
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"all-contributors-cli": "^6.8.1",
"bundlesize": "^0.18.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"microbundle": "^0.12.0-next.6",
"prettier": "^1.18.2",
"promise": "^8.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"release-it": "^12.3.4",
"rimraf": "^2.6.3",
"typescript": "^3.5.3",
"yup": "^0.27.0"
},
"peerDependencies": {
"react": ">=16.8.3",
"yup": ">=0.26.10 <1.0.0"
},
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "microbundle --jsx React.createElement",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "eslint --fix --ext ts,tsx src",
"lint-staged": "lint-staged",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"precommit": "lint-staged",
"size": "bundlesize",
"test": "jest --watch",
"test:ci": "jest --ci --coverage",
"typecheck": "tsc --noEmit",
"typecheck:all": "tsc --noEmit -p tsconfig.all.json"
},
"lint-staged": {
"*.json": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "4kB"
},
{
"path": "./dist/index.modern.js",
"maxSize": "4kB"
},
{
"path": "./dist/index.umd.js",
"maxSize": "4kB"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}